java单个文件拷贝

//单个文件拷贝
public class IoCopyText01 {
    public static void main(String[] args) {
        FileOutputStream fio = null;
        FileInputStream fis = null;
        try {
            //创建一个输入流对象
            fis = new FileInputStream("C:\\Users\\11026\\Desktop\\1611539565799.docx");
            //创建一个输出流对象
            fio = new FileOutputStream("D:\\Text\\1611539565799.docx");

            //一边读一边写
            byte[] byt = new byte[1024 * 1024]; //一次最多拷贝1MB
            int count = 0;
            while((count = fis.read(byt)) != -1){
                fio.write(byt,0,count);
            }

            //刷新,输出流最后要刷新
            fio.flush();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            //这里需要分开关闭,否则会影响另一个流的关闭
            if (fio != null) {
                try {
                    fio.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

    }
}

public class CopyText02 {
    public static void main(String[] args) {
        FileWriter in = null;
        FileReader out = null;

        //创建读,写对象
        try {
            in = new FileWriter("D:\\Text\\NEWS.txt");
            out = new FileReader("D:\\NEWS.txt");

            //边读边写
            char[] chars = new char[4];
            int readCount = 0;
            while((readCount = out.read(chars)) != -1){
                in.write(chars,0,readCount);
            }
            //刷新
            in.flush();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if (out != null) {
                try {
                    out.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值