最后更新:2014-07-30
在Java NIO中,你可以直接从一个channel中传输数据到另一个channel,如果channels中的一个是FileChannel。这个FileChannel类有一个transferTo()方法和一个transferFrom方法可以为你做这个事情。
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);
另外,一些SocketChannel的实现可能只是传输在SocketChannel中内部buffer已经准备好的数据--甚至SocketChannel可能不足可用字节的数量。因此,他可能不会传输整个需要的数据(count)从SocketChannel到FileChannel。
transferTo()
这个transferTo()方法从一个FileChannel传输进入一些其他的channel。这里有一个简单的例子:
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);
SocketChannel的问题也是transferTo()方法的呈现。这个SocketChannel的实现可能只是传输来自于FileChannel的字节直到发送的缓冲区满了,然后就会停下来。
翻译地址:http://tutorials.jenkov.com/java-nio/channel-to-channel-transfers.html