public class DataInputDeserializer extends Object implements DataInputView, Serializable
DataInput interface.| 构造器和说明 |
|---|
DataInputDeserializer() |
DataInputDeserializer(byte[] buffer) |
DataInputDeserializer(byte[] buffer,
int start,
int len) |
DataInputDeserializer(ByteBuffer buffer) |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
available() |
int |
getPosition() |
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) |
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(@Nonnull byte[] buffer)
public DataInputDeserializer(@Nonnull byte[] buffer, int start, int len)
public DataInputDeserializer(@Nonnull ByteBuffer buffer)
public void setBuffer(@Nonnull ByteBuffer buffer)
public void setBuffer(@Nonnull byte[] buffer, int start, int len)
public void setBuffer(@Nonnull byte[] buffer)
public void releaseArrays()
public int available()
public boolean readBoolean()
throws IOException
readBoolean 在接口中 DataInputIOExceptionpublic byte readByte()
throws IOException
readByte 在接口中 DataInputIOExceptionpublic char readChar()
throws IOException
readChar 在接口中 DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble 在接口中 DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat 在接口中 DataInputIOExceptionpublic void readFully(@Nonnull byte[] b) throws IOException
readFully 在接口中 DataInputIOExceptionpublic void readFully(@Nonnull byte[] b, int off, int len) throws IOException
readFully 在接口中 DataInputIOExceptionpublic int readInt()
throws IOException
readInt 在接口中 DataInputIOException@Nullable public String readLine() throws IOException
readLine 在接口中 DataInputIOExceptionpublic long readLong()
throws IOException
readLong 在接口中 DataInputIOExceptionpublic short readShort()
throws IOException
readShort 在接口中 DataInputIOException@Nonnull public String readUTF() throws IOException
readUTF 在接口中 DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte 在接口中 DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort 在接口中 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 在接口中 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(@Nonnull 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 在接口中 DataInputViewb - byte array to store the data tooff - offset into byte arraylen - byte length to readIOExceptionpublic int read(@Nonnull byte[] b) throws IOException
DataInputViewb. Returns the actually number of read bytes or -1
if there is no more data.read 在接口中 DataInputViewb - byte array to store the data toIOExceptionpublic int getPosition()
Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.