public interface RandomAccessInputStream
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
File |
getFile() |
long |
getFilePointer() |
long |
getLength() |
long |
length() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
int |
readFully(byte[] b) |
int |
readFully(byte[] b,
int offs,
int len) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
reset() |
void |
seek(long pos) |
long |
skip(long n) |
int |
skipBytes(int n) |
File getFile()
int available()
throws IOException
IOExceptionvoid close()
throws IOException
IOExceptionvoid mark(int readlimit)
boolean markSupported()
int read()
throws IOException
IOExceptionint read(byte[] b,
int off,
int len)
throws IOException
IOExceptionint read(byte[] b)
throws IOException
IOExceptionvoid reset()
throws IOException
IOExceptionlong skip(long n)
throws IOException
IOExceptionlong getFilePointer()
throws IOException
IOExceptionvoid seek(long pos)
throws IOException
IOExceptionbyte readByte()
throws IOException
IOExceptionlong getLength()
throws IOException
IOExceptionint skipBytes(int n)
throws IOException
IOExceptionlong length()
throws IOException
IOExceptionint readFully(byte[] b)
throws IOException
IOExceptionint readFully(byte[] b,
int offs,
int len)
throws IOException
IOExceptionboolean readBoolean()
throws IOException
IOExceptionchar readChar()
throws IOException
IOExceptionshort readShort()
throws IOException
IOExceptiondouble readDouble()
throws IOException
IOExceptionfloat readFloat()
throws IOException
IOExceptionint readInt()
throws IOException
IOExceptionString readLine() throws IOException
IOExceptionlong readLong()
throws IOException
IOExceptionint readUnsignedByte()
throws IOException
IOExceptionint readUnsignedShort()
throws IOException
IOExceptionString readUTF() throws IOException
IOExceptionCopyright © 2014. All rights reserved.