public class LEDataInputStream extends FilterInputStream implements DataInput
This is the sister class of the DataInputStream which allows for reading of java native datatypes from an input stream with the datatypes stored in big endian byte order.
This class implements the minimum required and calls DataInputStream for some of the required methods for DataInput.
Not all methods are implemented due to lack of immediatte requirement for that functionality. It is not clear if it is ever going to be functionally required to be able to read UTF data in a LittleEndianManner
| Constructor and Description |
|---|
LEDataInputStream(InputStream in) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
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()
dont call this it is not implemented.
|
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF()
dont call this it is not implemented
|
static String |
readUTF(DataInput in)
dont call this it is not implemented
|
int |
skipBytes(int n) |
available, mark, markSupported, read, reset, skippublic LEDataInputStream(InputStream in)
public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class FilterInputStreamIOExceptionpublic final int read(byte[] b)
throws IOException
read in class FilterInputStreamIOExceptionpublic final int read(byte[] b,
int off,
int len)
throws IOException
read in class FilterInputStreamIOExceptionpublic 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 final int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic 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 String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic final String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic static final String readUTF(DataInput in) throws IOException
IOExceptionCopyright 2010 JogAmp Community.