public final class DataInput2 extends InputStream implements DataInput
ByteBuffer
and provides DataInput
Modifier and Type | Field and Description |
---|---|
ByteBuffer |
buf |
int |
pos |
Constructor and Description |
---|
DataInput2(byte[] b) |
DataInput2(ByteBuffer buf,
int pos) |
Modifier and Type | Method and Description |
---|---|
int |
read() |
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() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
int |
skipBytes(int n) |
static int |
unpackInt(DataInput is)
Unpack positive int value from the input stream.
|
static long |
unpackLong(DataInput in)
Unpack positive long value from the input stream.
|
available, close, mark, markSupported, read, read, reset, skip
public ByteBuffer buf
public int pos
public DataInput2(ByteBuffer buf, int pos)
public DataInput2(byte[] b)
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 readLine() throws IOException
readLine
in interface DataInput
IOException
public String readUTF() throws IOException
readUTF
in interface DataInput
IOException
public int read() throws IOException
read
in class InputStream
IOException
public static int unpackInt(DataInput is) throws IOException
is
- The input stream.IOException
public static long unpackLong(DataInput in) throws IOException
in
- The input stream.IOException
Copyright © 2019. All rights reserved.