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

溫馨提示×

溫馨提示×

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

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

Java中怎么加速讀取復制超大文件

發布時間:2021-06-11 15:42:10 來源:億速云 閱讀:163 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Java中怎么加速讀取復制超大文件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

package test;
 import java.io.BufferedInputStream;
 import java.io.BufferedOutputStream;
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.IOException;
 import java.io.InputStream;
 import java.nio.channels.FileChannel;

 public class Test {
public static void main(String[] args) {
File source = new File("E:\\tools\\fmw_12.1.3.0.0_wls.jar");
File target = new File("E:\\tools\\fmw_12.1.3.0.0_wls-copy.jar");
long start, end;

start = System.currentTimeMillis();
fileChannelCopy(source, target);
end = System.currentTimeMillis();
System.out.println("文件通道用時:" + (end - start) + "毫秒");

start = System.currentTimeMillis();
copy(source, target);
end = System.currentTimeMillis();
System.out.println("普通緩沖用時:" + (end - start) + "毫秒");
}

/**
  * 使用文件通道的方式復制文件
  * @param source 源文件
  * @param target 目標文件
  */
 public static void fileChannelCopy(File source, File target) {


   FileInputStream in = null;
   FileOutputStream out = null;
   FileChannel inChannel = null;
   FileChannel outChannel = null;
   try {
    in = new FileInputStream(source);
    out = new FileOutputStream(target);
    inChannel = in.getChannel();//得到對應的文件通道
   outChannel = out.getChannel();//得到對應的文件通道
   inChannel.transferTo(0, inChannel.size(), outChannel);//連接兩個通道,并且從inChannel通道讀取,然后寫入outChannel通道
  } catch (IOException e) {
    e.printStackTrace();
   } finally {
    try {
     in.close();
     inChannel.close();
     out.close();
     outChannel.close();
    } catch (IOException e) {
     e.printStackTrace();
    }


   }


  }
 
/**
* 普通緩沖復制
* @param source 源文件
* @param target 目標文件
*/
public static void copy (File source, File target) {
InputStream in = null;
BufferedOutputStream out = null;
try {
in = new BufferedInputStream(new FileInputStream(source));
out = new BufferedOutputStream(new FileOutputStream(target));
byte[] buf = new byte[4096];
int i;
while ((i = in.read(buf)) != -1) {
out.write(buf, 0, i);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (null != in) {
in.close();
}
if (null != out) {
out.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
 }

 }

看完上述內容,你們對Java中怎么加速讀取復制超大文件有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

金阳县| 钟山县| 江北区| 东乡族自治县| 吕梁市| 师宗县| 治县。| 剑阁县| 罗田县| 商水县| 平果县| 五寨县| 彝良县| 沂源县| 宜兰县| 望江县| 增城市| 新兴县| 平塘县| 浪卡子县| 屯门区| 大安市| 郴州市| 临泽县| 酉阳| 岗巴县| 揭阳市| 舞阳县| 云霄县| 华安县| 塔城市| 兴文县| 淮北市| 桃园县| 周宁县| 克什克腾旗| 大同市| 双牌县| 山西省| 渑池县| 峨眉山市|