字符流高速缓存区文件复制

Posted 静赋清承

tags:

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

public static void fileCopy2Buffer(String oldFileName,String newFileName){
        BufferedReader br = null;
        BufferedWriter bw = null;
        try {
            br = new BufferedReader(new FileReader(oldFileName));
            bw = new BufferedWriter(new FileWriter(newFileName));
            String str = null;
            while ((str = br.readLine())!=null){
                bw.write(str);
                bw.newLine();
            }
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            try {
                if(bw!=null)br.close();
                if(br!=null)bw.close();
            }catch (Exception ee){
                ee.printStackTrace();
            }
        }
    }

 

以上是关于字符流高速缓存区文件复制的主要内容,如果未能解决你的问题,请参考以下文章

oracle笔记---SGA之高速缓存区

io操作中,通常使用啥方法来强制清空缓存区

sed流编辑器

一文带你读懂 C/C++ 语言输入输出流与缓存区

带缓存的字符输入输出流

详解 Java NIO