public class ByteArrayDataInputStream
extends java.lang.Object
implements java.io.DataInput
DataInput over a byte[] buffer. This class is not thread safe.| 构造器和说明 |
|---|
ByteArrayDataInputStream(byte[] buf) |
ByteArrayDataInputStream(byte[] buf,
int offset,
int length) |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
capacity() |
protected int |
checkBounds(int pos) |
int |
limit() |
int |
position() |
ByteArrayDataInputStream |
position(int pos) |
int |
read()
Reads the next byte of data from buf.
|
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() |
java.lang.String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
java.lang.String |
readUTF() |
int |
skipBytes(int n) |
java.lang.String |
toString() |
public ByteArrayDataInputStream(byte[] buf)
public ByteArrayDataInputStream(byte[] buf,
int offset,
int length)
public ByteArrayDataInputStream position(int pos)
public int position()
public int limit()
public int capacity()
public int read()
int in the range
0 to 255. If no byte is available because the end of the buffer has been reached,
the value -1 is returned.-1 if the end of the stream has been reached.public int read(byte[] b,
int off,
int len)
public void readFully(byte[] b)
throws java.io.IOException
readFully 在接口中 java.io.DataInputjava.io.IOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws java.io.IOException
readFully 在接口中 java.io.DataInputjava.io.IOExceptionpublic int skipBytes(int n)
skipBytes 在接口中 java.io.DataInputpublic boolean readBoolean()
throws java.io.IOException
readBoolean 在接口中 java.io.DataInputjava.io.IOExceptionpublic byte readByte()
throws java.io.IOException
readByte 在接口中 java.io.DataInputjava.io.IOExceptionpublic int readUnsignedByte()
throws java.io.IOException
readUnsignedByte 在接口中 java.io.DataInputjava.io.IOExceptionpublic short readShort()
throws java.io.IOException
readShort 在接口中 java.io.DataInputjava.io.IOExceptionpublic int readUnsignedShort()
throws java.io.IOException
readUnsignedShort 在接口中 java.io.DataInputjava.io.IOExceptionpublic char readChar()
throws java.io.IOException
readChar 在接口中 java.io.DataInputjava.io.IOExceptionpublic int readInt()
throws java.io.IOException
readInt 在接口中 java.io.DataInputjava.io.IOExceptionpublic long readLong()
throws java.io.IOException
readLong 在接口中 java.io.DataInputjava.io.IOExceptionpublic float readFloat()
throws java.io.IOException
readFloat 在接口中 java.io.DataInputjava.io.IOExceptionpublic double readDouble()
throws java.io.IOException
readDouble 在接口中 java.io.DataInputjava.io.IOExceptionpublic java.lang.String readLine()
throws java.io.IOException
readLine 在接口中 java.io.DataInputjava.io.IOExceptionpublic java.lang.String readUTF()
throws java.io.IOException
readUTF 在接口中 java.io.DataInputjava.io.IOExceptionpublic java.lang.String toString()
toString 在类中 java.lang.Objectprotected int checkBounds(int pos)