今天就跟大家聊聊有關(guān)Java中怎么加速讀取復(fù)制超大文件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)是專(zhuān)業(yè)的六枝網(wǎng)站建設(shè)公司,六枝接單;提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行六枝網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
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("文件通道用時(shí):" + (end - start) + "毫秒"); start = System.currentTimeMillis(); copy(source, target); end = System.currentTimeMillis(); System.out.println("普通緩沖用時(shí):" + (end - start) + "毫秒"); } /** * 使用文件通道的方式復(fù)制文件 * @param source 源文件 * @param target 目標(biāo)文件 */ 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();//得到對(duì)應(yīng)的文件通道 outChannel = out.getChannel();//得到對(duì)應(yīng)的文件通道 inChannel.transferTo(0, inChannel.size(), outChannel);//連接兩個(gè)通道,并且從inChannel通道讀取,然后寫(xiě)入outChannel通道 } catch (IOException e) { e.printStackTrace(); } finally { try { in.close(); inChannel.close(); out.close(); outChannel.close(); } catch (IOException e) { e.printStackTrace(); } } } /** * 普通緩沖復(fù)制 * @param source 源文件 * @param target 目標(biāo)文件 */ 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(); } } } } }
看完上述內(nèi)容,你們對(duì)Java中怎么加速讀取復(fù)制超大文件有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。