public class LittleEndianDataInputStream extends InputStream implements DataInput
| Constructor and Description |
|---|
LittleEndianDataInputStream(InputStream in) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
long |
bytesRead() |
void |
close() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar()
like DataInputStream.readChar except little endian.
|
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt()
like DataInputStream.readInt except little endian.
|
String |
readLine()
Deprecated.
|
long |
readLong()
like DataInputStream.readLong except little endian.
|
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort()
Note, returns int even though it reads a short.
|
String |
readUTF() |
int |
skipBytes(int n) |
mark, markSupported, read, reset, skippublic LittleEndianDataInputStream(InputStream in)
public int available()
throws IOException
available in class InputStreamIOExceptionpublic final short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic final int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic final char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic final int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic final long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic final float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic final double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic final int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOExceptionpublic final void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionpublic final void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionpublic final int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic final boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic final byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic int read()
throws IOException
read in class InputStreamIOExceptionpublic final int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOException@Deprecated public final String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic final String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic final void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class InputStreamIOExceptionpublic long bytesRead()
Copyright © 2015. All rights reserved.