JAVA 字符流读取和写入改进 148

2022/3/31 1:19:29

本文主要是介绍JAVA 字符流读取和写入改进 148,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

JAVA 字符流读取和写入改进 ,用到读写便捷类

import java.io.*;

public class CopyJavaDemo {
    public static void main(String[] args) throws IOException {
        File file = new File("./src/CopyJavaDemo.java");
        if(file.isFile()){
            //字节流进行操作
            FileReader fr = new FileReader(file);
            String Path = "./Copy.java";
            FileWriter fw = new FileWriter(Path);
//            int ch;
//            while ((ch = isr.read()) !=-1){
//                osw.write(ch);
//            }
            char[] chs = new char[1024];
            int len;
            while ((len = fr.read(chs)) !=-1){
                fw.write(chs,0,len );
            }
            fr.close();
            fw.close();

        }else {
            System.out.println("文件不存在");
        }
    }
}

 



这篇关于JAVA 字符流读取和写入改进 148的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程