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

溫馨提示×

溫馨提示×

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

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

使用java怎么實現一個大文件拷貝功能

發布時間:2021-04-20 16:20:36 來源:億速云 閱讀:248 作者:Leah 欄目:編程語言

使用java怎么實現一個大文件拷貝功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

Java的特點有哪些

Java的特點有哪些 1.Java語言作為靜態面向對象編程語言的代表,實現了面向對象理論,允許程序員以優雅的思維方式進行復雜的編程。 2.Java具有簡單性、面向對象、分布式、安全性、平臺獨立與可移植性、動態性等特點。 3.使用Java可以編寫桌面應用程序、Web應用程序、分布式系統和嵌入式系統應用程序等。

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
 
public class BigFileCopy {
 
 
 /**
 * 通過channel到channel直接傳輸
 * @param source
 * @param dest
 * @throws IOException
 */
 public static void copyByChannelToChannel(String source, String dest) throws IOException {
 File source_tmp_file = new File(source);
 if (!source_tmp_file.exists()) {
 return ;
 }
 RandomAccessFile source_file = new RandomAccessFile(source_tmp_file, "r");
 FileChannel source_channel = source_file.getChannel();
 File dest_tmp_file = new File(dest);
 if (!dest_tmp_file.isFile()) {
 if (!dest_tmp_file.createNewFile()) {
 source_channel.close();
 source_file.close();
 return;
 }
 }
 RandomAccessFile dest_file = new RandomAccessFile(dest_tmp_file, "rw");
 FileChannel dest_channel = dest_file.getChannel();
 long left_size = source_channel.size();
 long position = 0;
 while (left_size > 0) {
 long write_size = source_channel.transferTo(position, left_size, dest_channel);
 position += write_size;
 left_size -= write_size;
 }
 source_channel.close();
 source_file.close();
 dest_channel.close();
 dest_file.close();
 }
 
 
 public static void main(String[] args) {
 try {
 long start_time = System.currentTimeMillis();
 BigFileCopy.copyByChannelToChannel("source_file", "dest_file");
 long end_time = System.currentTimeMillis();
 System.out.println("copy time = " + (end_time - start_time));
 } catch (IOException e) {
 e.printStackTrace();
 }
 }
 
}

看完上述內容,你們掌握使用java怎么實現一個大文件拷貝功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

峨眉山市| 溆浦县| 梅州市| 邵东县| 利辛县| 高邑县| 郓城县| 久治县| 新宁县| 罗江县| 铁岭市| 珲春市| 会宁县| 休宁县| 马山县| 邵阳县| 林州市| 长寿区| 信阳市| 确山县| 泰宁县| 蓬莱市| 丹阳市| 乌拉特中旗| 马龙县| 德安县| 彰武县| 兴义市| 栖霞市| 门源| 左权县| 乡宁县| 富川| 龙南县| 达拉特旗| 石屏县| 龙口市| 奎屯市| 滨海县| 苍溪县| 昌都县|