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

溫馨提示×

溫馨提示×

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

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

java復制文件的4種方式

發布時間:2020-08-10 05:02:48 來源:ITPUB博客 閱讀:158 作者:ii_chengzi 欄目:web開發

 1. 使用FileStreams復制

  這是最經典的方式將一個文件的內容復制到另一個文件中。 使用FileInputStream讀取文件A的字節,使用FileOutputStream寫入到文件B。

  這是第一個方法的代碼:

  private static void copyFileUsingFileStreams(File source, File dest)

  throws IOException {

  InputStream input = null;

  OutputStream output = null;

  try {

  input = new FileInputStream(source);

  output = new FileOutputStream(dest);

  byte[] buf = new byte[1024];

  int bytesRead;

  while ((bytesRead = input.read(buf)) > 0) {

  output.write(buf, 0, bytesRead);

  }

  } finally {

  input.close();

  output.close();

  }

  }

  正如你所看到的我們執行幾個讀和寫操作try的數據,所以這應該是一個低效率的,下一個方法我們將看到新的方式。

  2. 使用FileChannel復制

  Java NIO包括transferFrom方法,根據文檔應該比文件流復制的速度更快。

  這是第二種方法的代碼:

  private static void copyFileUsingFileChannels(File source, File dest) throws IOException {

  FileChannel inputChannel = null;

  FileChannel outputChannel = null;

  try {

  inputChannel = new FileInputStream(source).getChannel();

  outputChannel = new FileOutputStream(dest).getChannel();

  outputChannel.transferFrom(inputChannel, 0, inputChannel.size());

  } finally {

  inputChannel.close();

  outputChannel.close();

  }

  }

  

java復制文件的4種方式


  3. 使用Commons IO復制

  Apache Commons IO提供拷貝文件方法在其FileUtils類,可用于復制一個文件到另一個地方。它非常方便使用Apache Commons FileUtils類時,您已經使用您的項目。

  基本上,這個類使用Java NIO FileChannel內部。

  這是第三種方法的代碼:

  private static void copyFileUsingApacheCommonsIO(File source, File dest)

  throws IOException {

  FileUtils.copyFile(source, dest);

  }

  4. 使用Java7的Files類復制

  如果你有一些經驗在Java 7中你可能會知道,可以使用復制方法的Files類文件,從一個文件復制到另一個文件。

  這是第四個方法的代碼:

  private static void copyFileUsingJava7Files(File source, File dest)

  throws IOException {

  Files.copy(source.toPath(), dest.toPath());

  }

詳情更多了解:http://shenzhen.offcn.com/

向AI問一下細節

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

AI

福泉市| 罗山县| 平潭县| 桂阳县| 灵山县| 芜湖县| 巴林右旗| 桑植县| 托克逊县| 五河县| 勃利县| 抚远县| 渭源县| 桐城市| 云龙县| 定州市| 安泽县| 永城市| 襄樊市| 长武县| 永寿县| 紫金县| 饶平县| 获嘉县| 红安县| 和平区| 巴青县| 清镇市| 垦利县| 星座| 嘉禾县| 襄樊市| 阿荣旗| 南溪县| 漳州市| 海原县| 平南县| 杂多县| 依兰县| 江安县| 元阳县|