public class DataInputDeserializer extends Object implements DataInputView, Serializable
DataInput interface.| Constructor and Description |
|---|
DataInputDeserializer() |
DataInputDeserializer(byte[] buffer) |
DataInputDeserializer(byte[] buffer,
int start,
int len) |
DataInputDeserializer(ByteBuffer buffer) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
int |
read(byte[] b)
Tries to fill the given byte array
b. |
int |
read(byte[] b,
int off,
int len)
Reads up to
len bytes of memory and stores it into b starting at offset off. |
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() |
void |
releaseArrays() |
void |
setBuffer(byte[] buffer,
int start,
int len) |
void |
setBuffer(ByteBuffer buffer) |
int |
skipBytes(int n) |
void |
skipBytesToRead(int numBytes)
Skips
numBytes bytes of memory. |
public DataInputDeserializer()
public DataInputDeserializer(byte[] buffer)
public DataInputDeserializer(byte[] buffer,
int start,
int len)
public DataInputDeserializer(ByteBuffer buffer)
public void setBuffer(ByteBuffer buffer)
public void setBuffer(byte[] buffer,
int start,
int len)
public void releaseArrays()
public int available()
public boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic void skipBytesToRead(int numBytes)
throws IOException
DataInputViewnumBytes bytes of memory. In contrast to the DataInput.skipBytes(int) method,
this method always skips the desired number of bytes or throws an EOFException.skipBytesToRead in interface DataInputViewnumBytes - The number of bytes to skip.IOException - Thrown, if any I/O related problem occurred such that the input could not
be advanced to the desired position.public int read(byte[] b,
int off,
int len)
throws IOException
DataInputViewlen bytes of memory and stores it into b starting at offset off.
It returns the number of read bytes or -1 if there is no more data left.read in interface DataInputViewb - byte array to store the data tooff - offset into byte arraylen - byte length to readIOExceptionpublic int read(byte[] b)
throws IOException
DataInputViewb. Returns the actually number of read bytes or -1 if there is no
more data.read in interface DataInputViewb - byte array to store the data toIOExceptionCopyright © 2014–2018 The Apache Software Foundation. All rights reserved.