1.代码示例
package com.learning.filechannel;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
/**
* @Author wangyouhui
* @Description TODO
**/
public class FileChannelTransferTo {
public static void main(String[] args) {
try (
FileChannel from = new FileInputStream("from.txt").getChannel();
FileChannel to = new FileOutputStream("to.txt").getChannel();
){
// 效率高,底层会利用操作系统的零拷贝进行优化,最大2G数据
from.transferTo(0,from.size(),to);
}catch (Exception e) {
e.printStackTrace();
}
}
}
2.大文件拷贝
package com.learning.filechannel;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
/**
* @Author wangyouhui
* @Description TODO
**/
public class FileChannelTransferTo {
public static void main(String[] args) {
try (
FileChannel from = new FileInputStream("from.txt").getChannel();
FileChannel to = new FileOutputStream("to.txt").getChannel();
){
// 效率高,底层会利用操作系统的零拷贝进行优化,最大2G数据
long size = from.size();
// left变量代表还剩多少字节
for(long left = size; left>0;){
left -= from.transferTo((size-left),from.size(),to);
}
}catch (Exception e) {
e.printStackTrace();
}
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/92331.html