字符输入输出流

Posted 清风追梦enjoy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符输入输出流相关的知识,希望对你有一定的参考价值。

package com.sxt.copy2;

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Reader;
import java.io.Writer;

/*
 * 字符输入输出流
 * Reader
 * Writer
 */
public class TestCopy {
    public static void main(String[] args) {
        Reader reader = null;
        Writer writer = null;
        try {
            reader = new FileReader("F:\\01_面向对象设计思想_重要_1.avi");
            writer = new FileWriter("G:\\CopyDest.avi");
            char[] cbuf = new char[1024];
            //第一步:读文件到程序
            int len = 0;
            while((len = reader.read(cbuf))!= -1){
                System.out.println(len);
                writer.write(cbuf, 0, len);//第二部:从程序写到文件中
            }
            System.out.println("Copy执行完成!");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            if(reader != null){
                try {
                    reader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(writer != null){
                try {
                    writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        
    }
}

 

以上是关于字符输入输出流的主要内容,如果未能解决你的问题,请参考以下文章

片段(Java) | 机试题+算法思路+考点+代码解析 2023

第2章 字符流与字节流

IO编程__字符流__输入输出

IO编程__缓冲字符流__输入输出

I/O(输入/输出)---字节流与字符流

Java学习笔记6.2.1 字符流 - 文件字符流与缓冲字符流