public interface DataInput
Modifier and Type | Method and Description |
---|---|
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] abyte0) |
void |
readFully(byte[] abyte0,
int i,
int j) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
int |
skipBytes(int i) |
boolean readBoolean() throws IOException
IOException
- ?byte readByte() throws IOException
IOException
- ?char readChar() throws IOException
IOException
- ?double readDouble() throws IOException
IOException
- ?float readFloat() throws IOException
IOException
- ?void readFully(byte[] abyte0) throws IOException
abyte0
- ?IOException
- ?void readFully(byte[] abyte0, int i, int j) throws IOException
abyte0
- ?i
- ?j
- ?IOException
- ?int readInt() throws IOException
IOException
- ?String readLine() throws IOException
IOException
- ?long readLong() throws IOException
IOException
- ?short readShort() throws IOException
IOException
- ?String readUTF() throws IOException
IOException
- ?int readUnsignedByte() throws IOException
IOException
- ?int readUnsignedShort() throws IOException
IOException
- ?int skipBytes(int i) throws IOException
i
- ?IOException
- ?