public class BufferedFileInput extends Object implements RandomAccess, DataInput, Closeable
DataInput for RandomAccessFile.| Constructor and Description |
|---|
BufferedFileInput(RandomAccessFile file,
byte[] buffer)
Creates a new instance.
|
BufferedFileInput(RandomAccessFile file,
int bufferSize)
Creates a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
long |
getPosition()
Returns the current file position in bytes.
|
long |
getSize()
Returns the file size in bytes.
|
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
seek(long position)
Sets cursor in the target file.
|
int |
skipBytes(int n) |
void |
sync()
Resets internal buffer.
|
public BufferedFileInput(RandomAccessFile file, int bufferSize)
bufferSize - the buffer sizefile - the target filepublic BufferedFileInput(RandomAccessFile file, byte[] buffer)
buffer - internal bufferfile - the target filepublic void sync()
throws IOException
IOException - if failed by I/O errorpublic void seek(long position)
throws IOException
position - the new positionIOException - if failed by I/O errorpublic long getPosition()
throws IOException
IOException - if failed by I/O errorpublic long getSize()
throws IOException
IOException - if failed by I/O errorpublic void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionpublic int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.