public class DefaultFileRegion extends java.lang.Object implements FileRegion
构造器和说明 |
---|
DefaultFileRegion(java.nio.channels.FileChannel channel) |
DefaultFileRegion(java.nio.channels.FileChannel channel,
long position,
long remainingBytes) |
限定符和类型 | 方法和说明 |
---|---|
java.nio.channels.FileChannel |
getFileChannel()
The open FileChannel from which data will be read to send to
remote host.
|
java.lang.String |
getFilename()
Provides an absolute filename for the underlying FileChannel.
|
long |
getPosition()
The current file position from which data will be read.
|
long |
getRemainingBytes()
The number of bytes remaining to be written from the file to the remote
host.
|
long |
getWrittenBytes()
The total number of bytes already written.
|
void |
update(long value)
Updates the current file position based on the specified amount.
|
public DefaultFileRegion(java.nio.channels.FileChannel channel) throws java.io.IOException
java.io.IOException
public DefaultFileRegion(java.nio.channels.FileChannel channel, long position, long remainingBytes)
public long getWrittenBytes()
FileRegion
getWrittenBytes
在接口中 FileRegion
public long getRemainingBytes()
FileRegion
getRemainingBytes
在接口中 FileRegion
public java.nio.channels.FileChannel getFileChannel()
FileRegion
getFileChannel
在接口中 FileRegion
public long getPosition()
FileRegion
getPosition
在接口中 FileRegion
public void update(long value)
FileRegion
FileRegion.getPosition()
and
FileRegion.getWrittenBytes()
by the given amount and decreases the value
returned by FileRegion.getRemainingBytes()
by the given amount
.update
在接口中 FileRegion
value
- The new value for the file position.public java.lang.String getFilename()
FileRegion
getFilename
在接口中 FileRegion