Java NIO Channel to Channel Transfers

In Java NIO you can transfer data directly from one channel to another, if one of the channels is aFileChannel. The FileChannel class has atransferTo() and a transferFrom() method which does this for you. 

transferFrom()

The FileChannel.transferFrom() method transfers data from a source channel into the FileChannel. Here is a simple example: 

RandomAccessFile fromFile = new RandomAccessFile("fromFile.txt", "rw");
FileChannel      fromChannel = fromFile.getChannel();

RandomAccessFile toFile = new RandomAccessFile("toFile.txt", "rw");
FileChannel      toChannel = toFile.getChannel();

long position = 0;
long count    = fromChannel.size();

toChannel.transferFrom(position, count, fromChannel);

The two first parameters, position and count, tell where in the destination file to start writing ( position), and how many bytes to transfer maximally ( count). If the source channel has fewer than count bytes, less is transfered. 

Additionally, some SocketChannel implementations may transfer only the data theSocketChannel has ready in its internal buffer here and now - even if theSocketChannel may later have more data available. Thus, it may not transfer the entire data requested (count) from theSocketChannel into FileChannel

transferTo()

The transferTo() method transfer from a FileChannel into some other channel. Here is a simple example: 

RandomAccessFile fromFile = new RandomAccessFile("fromFile.txt", "rw");
FileChannel      fromChannel = fromFile.getChannel();

RandomAccessFile toFile = new RandomAccessFile("toFile.txt", "rw");
FileChannel      toChannel = toFile.getChannel();

long position = 0;
long count    = fromChannel.size();

fromChannel.transferTo(position, count, toChannel);

Notice how similar the example is to the previous. The only real difference is the which FileChannel object the method is called on. The rest is the same. 

The issue with SocketChannel is also present with the transferTo() method. The SocketChannel implementation may only transfer bytes from theFileChannel until the send buffer is full, and then stop. 

本文转自:http://tutorials.jenkov.com/java-nio/channel-to-channel-transfers.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值