首页 > 其他 > 详细

IO 流之 文件拷贝

时间:2020-04-11 20:52:32      阅读:57      评论:0      收藏:0      [点我收藏+]

文件拷贝

代码:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

/**
 * 使用 FileInputStream + FileOutputStream 完成文件拷贝
 * 拷贝的过程:一边读,一边写
 * 使用以上字节流拷贝文件时,文件类型随意,万能的,什么类型文件均可拷贝
 */
public class Copy01 {
    public static void main(String[] args) {
        FileInputStream fis = null;
        FileOutputStream fos = null;

        try {
            // 创建一个输入流对象
            fis = new FileInputStream("D:\\Blogs\\FileInputStream 终级版.md");
            // 创建一个输出流对象
            fos = new FileOutputStream("D:\\FileInputStream 终级版.md");

            // 核心:一边读,一边写
            byte[] bytes = new byte[1024 * 1024]; // 一次拷贝 1MB,即 1024 * 1024 (Byte)

            int readCount = 0;
            while((readCount = fis.read(bytes)) != -1){
                fos.write(bytes,0, readCount); // 读多少,写多少
            }
            // 刷新
            fos.flush();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            if (fos != null) {
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            // 分开 try ... catch,不要一起
            // 一起 try ... catch 时,其中一个流出现异常时,可能导致另一个流无法关闭
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

运行结果:

在D盘根目录下可以找到拷贝进来的FileInputStream 终级版.md文件

IO 流之 文件拷贝

原文:https://www.cnblogs.com/yerun/p/12681944.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!