码迷,mamicode.com
首页 > 编程语言 > 详细

java IO流文件拷贝文件(字符流标准写法)

时间:2019-03-29 00:35:33      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:time   pre   span   字符流   ring   new   nal   fileread   代码   

public static void copyFile2(String path1, String path2) {
        Reader reader = null;
        Writer writer = null;
        try {
            // 打开流
            reader = new FileReader(path1);
            writer = new FileWriter(path2);

            // 进行拷贝
        int ch = -1;
        char [] arr=new char[1024];
        while ((ch = reader.read(arr)) != -1) {
            writer.write(arr,0,ch);
            }
        } catch (Exception e) {
            throw new RuntimeException(e);
        } finally {
            // 关闭流,注意一定要能执行到close()方法,所以都要放到finally代码块中
            try {
                if (reader != null) {
                    reader.close();
                }
            } catch (Exception e) {
                throw new RuntimeException(e);
            } finally {
                try {
                    if (writer != null) {
                        writer.close();
                    }
                } catch (Exception e) {
                    throw new RuntimeException(e);
                }
            }
        }
    }

 

java IO流文件拷贝文件(字符流标准写法)

标签:time   pre   span   字符流   ring   new   nal   fileread   代码   

原文地址:https://www.cnblogs.com/sheng-sjk/p/9833458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!