91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

咸丰县| 合川市| 尚义县| 叙永县| 孟连| 行唐县| 星子县| 湛江市| 淅川县| 奉节县| 巴南区| 彰武县| 崇信县| 遂溪县| 东港市| 思南县| 铁力市| 巨野县| 晋宁县| 衡水市| 巢湖市| 大方县| 古浪县| 吉林省| 德安县| 蕲春县| 吴川市| 吉木萨尔县| 柞水县| 美姑县| 玉林市| 定陶县| 云霄县| 桦甸市| 乌拉特前旗| 漳州市| 云和县| 无极县| 桂林市| 临海市| 日土县|