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

溫馨提示×

溫馨提示×

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

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

使用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

石阡县| 正定县| 华蓥市| 米脂县| 广汉市| 肇源县| 绥中县| 文安县| 霍城县| 德庆县| 花莲县| 景谷| 大同市| 靖州| 青神县| 辽阳县| 凉城县| 大新县| 疏附县| 尚义县| 缙云县| 柳江县| 隆化县| 噶尔县| 通城县| 赤壁市| 龙南县| 东兴市| 图木舒克市| 康定县| 北辰区| 周宁县| 蓝田县| 龙游县| 合水县| 渝北区| 原阳县| 比如县| 乌恰县| 新安县| 阜新|