public class DefaultFileRegion extends java.lang.Object implements FileRegion
构造器和说明 |
---|
DefaultFileRegion(java.nio.channels.FileChannel file,
long position,
long count) |
DefaultFileRegion(java.nio.channels.FileChannel file,
long position,
long count,
boolean releaseAfterTransfer) |
限定符和类型 | 方法和说明 |
---|---|
long |
getCount()
Returns the number of bytes to transfer.
|
long |
getPosition()
Returns the offset in the file where the transfer began.
|
boolean |
releaseAfterTransfer() |
void |
releaseExternalResources()
Releases the external resources that this object depends on.
|
long |
transferTo(java.nio.channels.WritableByteChannel target,
long position)
Transfers the content of this file region to the specified channel.
|
public DefaultFileRegion(java.nio.channels.FileChannel file, long position, long count)
public DefaultFileRegion(java.nio.channels.FileChannel file, long position, long count, boolean releaseAfterTransfer)
public long getPosition()
FileRegion
getPosition
在接口中 FileRegion
public long getCount()
FileRegion
getCount
在接口中 FileRegion
public boolean releaseAfterTransfer()
public long transferTo(java.nio.channels.WritableByteChannel target, long position) throws java.io.IOException
FileRegion
transferTo
在接口中 FileRegion
target
- the destination of the transferposition
- the relative offset of the file where the transfer
begins from. For example, 0 will make the
transfer start from FileRegion.getPosition()
th byte and
FileRegion.getCount()
- 1 will make the last
byte of the region transferred.java.io.IOException
public void releaseExternalResources()
ExternalResourceReleasable