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 DataInput
IOException
public void readFully(byte[] b, int off, int len) throws IOException
readFully
in interface DataInput
IOException
public int skipBytes(int n) throws IOException
skipBytes
in interface DataInput
IOException
public boolean readBoolean() throws IOException
readBoolean
in interface DataInput
IOException
public short readShort() throws IOException
readShort
in interface DataInput
IOException
public byte readByte() throws IOException
readByte
in interface DataInput
IOException
public int readInt() throws IOException
readInt
in interface DataInput
IOException
public long readLong() throws IOException
readLong
in interface DataInput
IOException
public float readFloat() throws IOException
readFloat
in interface DataInput
IOException
public double readDouble() throws IOException
readDouble
in interface DataInput
IOException
public int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
public int readUnsignedShort() throws IOException
readUnsignedShort
in interface DataInput
IOException
public char readChar() throws IOException
readChar
in interface DataInput
IOException
public String readLine() throws IOException
readLine
in interface DataInput
IOException
public String readUTF() throws IOException
readUTF
in interface DataInput
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
IOException
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.