Java NIO Channel to Channel Transfers

来源:互联网 发布:淘宝类目大全2017 编辑:程序博客网 时间:2024/05/29 07:13

transferFrom()

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

RandomAccessFile fromFile = new RandomAccessFile("C:/Users/Jack/Desktop/fromFile.txt", "rw");FileChannel fromChannel = fromFile.getChannel();RandomAccessFile toFile = new RandomAccessFile("C:/Users/Jack/Desktop/toFile.txt", "rw");FileChannel toChannel = toFile.getChannel();long position = 0;long count    = fromChannel.size();toChannel.transferFrom(fromChannel, position, count);

The 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 thancount 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 intoFileChannel.

transferTo()

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

RandomAccessFile fromFile = new RandomAccessFile("C:/Users/Jack/Desktop/fromFile.txt", "rw");FileChannel      fromChannel = fromFile.getChannel();RandomAccessFile toFile = new RandomAccessFile("C:/Users/Jack/Desktop/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 whichFileChannel object the method is called on. The rest is the same.

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

0 0