【译】Java NIO Channel to Channel Transfers

在Java NIO中可以直接从一种channel转化成另一种channel。例如,FileChannel类有一个transferTo的方法和一个transferFrom的方法,都可以做channel转化。

transferFrom()

FileChannel.transferFrom()可以把源channel转发成FileChannel,例如:

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(fromChannel, position, count);

position和count,说明了目标文件从哪里开始写(position),最多有多少字节可以传输(count)。如果源channel的bytes数量少于count,则传输的数据就更少。

另外,一些SocketChannel的实现可能只传输SocketChannel内部已经准备好了的数据,即便SocketChannel可能之后会收到很多数据也不行。因此,当SocketChannel转化成FileChannel时,它可能不会传输要求大小(count)的数据。

transferTo()

这个方法和之前的转换方向相反,例如:

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);

这和上一个很像,唯一的不通就是调用转换方法的对象是谁。剩下的都一样。

 

下一篇:【译】Java NIO Selector

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值