亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Java怎么對文件進行快速copy

發布時間:2021-01-05 14:35:11 來源:億速云 閱讀:153 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關利用Java怎么對文件進行快速copy,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

package com.niu.nio;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
 
/**
 * @description:
 * @author: nxq email: niuxiangqian163@163.com
 * @createDate: 2020/12/28 5:48 下午
 * @updateUser: nxq email: niuxiangqian163@163.com
 * @updateDate: 2020/12/28 5:48 下午
 * @updateRemark:
 * @version: 1.0
 **/
public class Main {
 public static void main(String[] args) {
 quickCopy(new File("/Users/laoniu/a.txt"),new File("/Users/laoniu/b.txt"));
 }
 /**
  * 快速copy
  * @author nxq
  * @param src: 源文件
  * @param target: 目標文件
  * @return void
  */
 public static void quickCopy(File src, File target){
  try(FileInputStream inputStream = new FileInputStream(src);
   FileOutputStream outputStream = new FileOutputStream(target);
   FileChannel inputChannel = inputStream.getChannel(); // 得到源文件通道
   FileChannel outputChannel = outputStream.getChannel()// 得到目標文件通道
  ) {
   //將源文件數據通達連通到目標文件通道進行傳輸
   inputChannel.transferTo(0,inputChannel.size(),outputChannel);
  }catch (Exception e){
   e.printStackTrace();
  }
 }
}

關于這種io流關閉方式不清楚的同學請看我這篇文章:https://www.jb51.net/article/203438.htm

測試對比

復制目標文件:

利用Java怎么對文件進行快速copy

4.76GB

代碼

package com.niu.nio;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
 
/**
 * @description:
 * @author: nxq email: niuxiangqian163@163.com
 * @createDate: 2020/12/28 5:48 下午
 * @updateUser: nxq email: niuxiangqian163@163.com
 * @updateDate: 2020/12/28 5:48 下午
 * @updateRemark:
 * @version: 1.0
 **/
public class Main {
 public static void main(String[] args) {
  long start = System.currentTimeMillis();
  File src = new File("/Users/laoniu/Downloads/installer/cn_windows_10_business_edition_version_1809_updated_sept_2018_x64_dvd_fc5542c0.iso"); //文件4.76GB
  quickCopy(src,new File("/Users/laoniu/test/a.iso"));
   long end = System.currentTimeMillis();
  System.out.println("FileChannel復制:"+(end - start));
 
   start = System.currentTimeMillis();
  copy(src,new File("/Users/laoniu/test/b.iso"));
   end = System.currentTimeMillis();
  System.out.println("普通復制:"+(end - start));
 
 
 }
 /**
  * 快速copy
  * @author nxq
  * @param src: 源文件
  * @param target: 目標文件
  * @return void
  */
 public static void quickCopy(File src, File target){
  try(FileInputStream inputStream = new FileInputStream(src);
   FileOutputStream outputStream = new FileOutputStream(target);
   FileChannel inputChannel = inputStream.getChannel(); // 得到源文件文件通道
   FileChannel outputChannel = outputStream.getChannel()// 得到目標文件通道
  ) {
   //將源文件數據通達連通到目標文件通道進行傳輸
   inputChannel.transferTo(0,inputChannel.size(),outputChannel);
  }catch (Exception e){
   e.printStackTrace();
  }
 }
 /**
  * 普通copy
  * @author nxq
  * @param src:
  * @param target:
  * @return void
  */
 public static void copy(File src, File target){
  try(FileInputStream inputStream = new FileInputStream(src);
   FileOutputStream outputStream = new FileOutputStream(target);
  ) {
   byte[] data = new byte[1024*1024]; //加大每次讀取的數據多少
   int len;
   while ((len = inputStream.read(data))!=-1){
    outputStream.write(data,0,len);
   }
 
  }catch (Exception e){
   e.printStackTrace();
  }
 }
 
}

加大每次讀取的數據到1024*1024,否則更慢

結果

利用Java怎么對文件進行快速copy

以上就是利用Java怎么對文件進行快速copy,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金沙县| 秦安县| 东丽区| 平乡县| 崇文区| 通渭县| 炉霍县| 扬州市| 报价| 陆丰市| 牙克石市| 雷山县| 高台县| 墨江| 高碑店市| 射阳县| 竹山县| 大冶市| 望江县| 大悟县| 漳平市| 进贤县| 响水县| 霍州市| 闻喜县| 通海县| 双牌县| 平谷区| 黑水县| 竹溪县| 内丘县| 龙州县| 东港市| 泾阳县| 盘山县| 泸州市| 丰台区| 鄢陵县| 绥阳县| 吉木萨尔县| 工布江达县|