Constructor and Description |
---|
RandomAccessFileReader(File f) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
long |
getPosition()
Seek interface
|
static void |
main(String[] args) |
boolean |
markSupported()
Reader interface
|
int |
read(byte[] buf,
int off,
int len) |
int |
read(char[] cbuf,
int off,
int len)
copy what we can from buffer.
|
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b)
DataInput interface
|
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
String |
readLine()
works like the usual readLine but disregards \r to make things easier
|
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
seek(long pos) |
int |
skipBytes(int n) |
public RandomAccessFileReader(File f) throws FileNotFoundException
FileNotFoundException
public boolean markSupported()
markSupported
in class Reader
public int read(char[] cbuf, int off, int len) throws IOException
read
in class Reader
IOException
public int read(byte[] buf, int off, int len) throws IOException
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class Reader
IOException
public long getPosition()
public void seek(long pos) throws IOException
IOException
public String readLine() throws IOException
readLine
in interface DataInput
IOException
public 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 byte readByte() throws IOException
readByte
in interface DataInput
IOException
public int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
public short readShort() throws IOException
readShort
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 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 String readUTF() throws IOException
readUTF
in interface DataInput
IOException
public static void main(String[] args) throws IOException
IOException
Copyright © 2008–2022 The Apache Software Foundation. All rights reserved.