@InterfaceAudience.Public @InterfaceStability.Evolving public abstract class FSInputStream extends InputStream implements Seekable, PositionedReadable
| コンストラクタと説明 | 
|---|
| FSInputStream() | 
| 修飾子とタイプ | メソッドと説明 | 
|---|---|
| abstract long | getPos()Return the current offset from the start of the file | 
| int | read(long position,
    byte[] buffer,
    int offset,
    int length)Read up to the specified number of bytes, from a given
 position within a file, and return the number of bytes read. | 
| void | readFully(long position,
         byte[] buffer)Read number of bytes equal to the length of the buffer, from a given
 position within a file. | 
| void | readFully(long position,
         byte[] buffer,
         int offset,
         int length)Read the specified number of bytes, from a given
 position within a file. | 
| abstract void | seek(long pos)Seek to the given offset from the start of the file. | 
| abstract boolean | seekToNewSource(long targetPos)Seeks a different copy of the data. | 
| protected void | validatePositionedReadArgs(long position,
                          byte[] buffer,
                          int offset,
                          int length)Validation code, available for use in subclasses. | 
available, close, mark, markSupported, read, read, read, reset, skippublic FSInputStream()
public abstract void seek(long pos) throws IOException
seek インタフェース内 SeekableIOExceptionpublic abstract long getPos() throws IOException
getPos インタフェース内 SeekableIOExceptionpublic abstract boolean seekToNewSource(long targetPos) throws IOException
IOExceptionpublic int read(long position, byte[] buffer, int offset, int length) throws IOException
PositionedReadableread インタフェース内 PositionedReadableposition - position within filebuffer - destination bufferoffset - offset in the bufferlength - number of bytes to readIOException - IO problems.protected void validatePositionedReadArgs(long position, byte[] buffer, int offset, int length) throws EOFException
position - position: if negative an EOF exception is raisedbuffer - destination bufferoffset - offset within the bufferlength - length of bytes to readEOFException - if the position is negativeIndexOutOfBoundsException - if there isn't space for the amount of
 data requested.IllegalArgumentException - other arguments are invalid.public void readFully(long position, byte[] buffer, int offset, int length) throws IOException
PositionedReadablereadFully インタフェース内 PositionedReadableposition - position within filebuffer - destination bufferoffset - offset in the bufferlength - number of bytes to readIOException - IO problems.EOFException - the end of the data was reached before
 the read operation completedpublic void readFully(long position, byte[] buffer) throws IOException
PositionedReadablereadFully インタフェース内 PositionedReadableposition - position within filebuffer - destination bufferIOException - IO problems.EOFException - the end of the data was reached before
 the read operation completedCopyright © 2016 Apache Software Foundation. All rights reserved.