利用IO流进行文件复制

package m1;

import java.io.*;
import java.util.Scanner;

/**
 * 通过流复制文件
 *
 * @author Yzt
 * @version 1.0
 * @date 2021/10/26 10:08
 */
public class IO2 {
    public static void main(String[] args) {
        System.out.println("输入要复制的源文件路径:");
        String from = new Scanner(System.in).nextLine();
        System.out.println("输入目标文件路径:");
        String to = new Scanner(System.in).nextLine();
//        f1(from, to);//字符流复制
        f2(from, to);//字节流复制
    }

    private static void f2(String from, String to) {
        /**
         *字节流复制可以处理图片视频等
         */
        InputStream in=null;
        OutputStream out=null;
        try {
            in=new BufferedInputStream(new FileInputStream(from));
            out=new BufferedOutputStream(new FileOutputStream(to));
            int b;
            while ((b=in.read())!=-1){
                out.write(b);

            }
            System.out.println("文件复制成功");
        } catch (Exception e) {
            System.out.println("文件复制失败");
            e.printStackTrace();
        }finally {
            try {
                out.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                in.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    private static void f1(String from, String to) {
        /**
         * 只能操作文本文档,不能操作图片视频
         */
        Reader in = null;
        Writer out = null;
        try {
            //创建流对象
            in = new BufferedReader(new FileReader(from));
            out = new BufferedWriter(new FileWriter(to));
            //进行流操作
            int b;
            while ((b = in.read()) != -1) {//循环读取文件中的内容
                out.write(b);//将读取的数据写入文件
            }
            System.out.println("文件复制成功");
        } catch (Exception e) {
            System.out.println("文件复制失败");
            e.printStackTrace();
        } finally {
            /**
             *关流是有顺序的,如果是多个流,最后创建的要先关闭
             * 各自catch
             */
            try {
                out.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                in.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

N13China

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值