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()
FileRegiongetPosition 在接口中 FileRegionpublic long getCount()
FileRegiongetCount 在接口中 FileRegionpublic boolean releaseAfterTransfer()
public long transferTo(java.nio.channels.WritableByteChannel target,
long position)
throws java.io.IOException
FileRegiontransferTo 在接口中 FileRegiontarget - 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.IOExceptionpublic void releaseExternalResources()
ExternalResourceReleasable