【Java代码-A002】通过Java简单实现文件的复制操作,快速上手 - 简易版

前言

  • 通过"Java"简单实现文件的复制操作,快速上手;

实操

  • 使用"Windows 11" 系统通过"IntelliJ IDEA" 软件完成;
  • 以下方式具体的效率测评在此文件里,需要的请下载;

【方式1】

代码

【类名A】

FileCopying_A

【代码A】

import java.io.*;

/**
 * 方式1:读入一个字节,写出一个字节
 *
 * @author SUNxRUN
 */
public class FileCopying_A {
    public static void main(String[] args) throws IOException {
        // 参数:要复制的文件全限定名
        File oldFile = new File("D:\\demo.mp4");
        // 参数:复制后的文件全限定名
        File newFile = new File("D:\\new_demo.mp4");

        FileInputStream fis = new FileInputStream(oldFile);
        FileOutputStream fos = new FileOutputStream(newFile);

        // 记录下时间:开始传输时间记录
        long start = System.currentTimeMillis();

        int d;
        while ((d = fis.read()) != -1) {
            fos.write(d);
        }
        fos.close();
        fis.close();

        // 记录下时间:传输完成时间记录
        long end = System.currentTimeMillis();
        // 传输总用时
        long l = end - start;

        System.out.println("结束!!!用时:" + l);
    }
}

【图片A】

在这里插入图片描述

结果

在这里插入图片描述

【方式2】

代码

【类名A】

FileCopying_B

【代码A】

import java.io.*;

/**
* 方式2:利用缓冲字节数组
*
* @author SUNxRUN
*/
public class FileCopying_B {
  public static void main(String[] args) throws IOException {
      // 参数:要复制的文件全限定名
      File oldFile = new File("D:\\demo.mp4");
      // 参数:复制后的文件全限定名
      File newFile = new File("D:\\new_demo.mp4");

      FileInputStream fis = new FileInputStream(oldFile);
      FileOutputStream fos = new FileOutputStream(newFile);

      // 记录下时间:开始传输时间记录
      long start = System.currentTimeMillis();

      int len;
      byte[] d = new byte[1024 * 10];
      while ((len = fis.read(d)) != -1) {
          fos.write(d, 0, len);
      }
      fos.close();
      fis.close();

      // 记录下时间:传输完成时间记录
      long end = System.currentTimeMillis();
      // 传输总用时
      long l = end - start;

      System.out.println("结束!!!用时:" + l);
  }
}

【图片A】

在这里插入图片描述

结果

在这里插入图片描述

【方式3】

代码

【类名A】

FileCopying_C

【代码A】

import java.io.*;

/**
* 方式3:利用缓冲区(1)
*
* @author SUNxRUN
*/
public class FileCopying_C {
  public static void main(String[] args) throws IOException {
      // 参数:要复制的文件全限定名
      File oldFile = new File("D:\\demo.mp4");
      // 参数:复制后的文件全限定名
      File newFile = new File("D:\\new_demo.mp4");

      FileInputStream fis = new FileInputStream(oldFile);
      BufferedInputStream bis = new BufferedInputStream(fis);
      FileOutputStream fos = new FileOutputStream(newFile);
      BufferedOutputStream bos = new BufferedOutputStream(fos);

      // 记录下时间:开始传输时间记录
      long start = System.currentTimeMillis();

      int len;
      byte[] d = new byte[1024 * 10];
      while ((len = bis.read(d)) != -1) {
          bos.write(d, 0, len);
      }
      bos.close();
      bis.close();

      // 记录下时间:传输完成时间记录
      long end = System.currentTimeMillis();
      // 传输总用时
      long l = end - start;

      System.out.println("结束!!!用时:" + l);
  }
}

【图片A】

在这里插入图片描述

结果

在这里插入图片描述

【方式4】

代码

【类名A】

FileCopying_D

【代码A】

import java.io.*;

/**
* 方式4:利用缓冲区(2)
*
* @author SUNxRUN
*/
public class FileCopying_D {
  public static void main(String[] args) throws IOException {
      // 参数:要复制的文件全限定名
      File oldFile = new File("D:\\demo.mp4");
      // 参数:复制后的文件全限定名
      File newFile = new File("D:\\new_demo.mp4");

      FileInputStream fis = new FileInputStream(oldFile);
      BufferedInputStream bis = new BufferedInputStream(fis);
      FileOutputStream fos = new FileOutputStream(newFile);
      BufferedOutputStream bos = new BufferedOutputStream(fos);

      // 记录下时间:开始传输时间记录
      long start = System.currentTimeMillis();

      int d;
      while ((d = bis.read()) != -1) {
          bos.write(d);
      }
      bos.close();
      bis.close();

      // 记录下时间:传输完成时间记录
      long end = System.currentTimeMillis();
      // 传输总用时
      long l = end - start;

      System.out.println("结束!!!用时:" + l);
  }
}

【图片A】

在这里插入图片描述

结果

在这里插入图片描述

后记

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

SUNxRUN

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

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

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

打赏作者

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

抵扣说明:

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

余额充值