public class BytesInputStream extends FastByteArrayInputStream implements DataInput
| Constructor and Description |
|---|
BytesInputStream(byte[] data)
Constructs a new BytesInputStream instance,
that will read from the given data.
|
BytesInputStream(int size)
Constructs a new BytesInputStream instance,
with an empty buffer of a given size.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getBuffer()
Returns the reference to the input buffer.
|
int |
getBufferLength()
Gets buffer length.
|
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 |
reset(byte[] data)
Resets this BytesInputStream using the given
byte[] as new input buffer.
|
void |
reset(byte[] data,
int length)
Resets this BytesInputStream using the given
byte[] as new input buffer and a given length.
|
void |
reset(int length)
Resets this BytesInputStream assigning the input buffer
a new length.
|
int |
skip(int n)
Skips the given number of bytes or all bytes till the end
of the assigned input buffer length.
|
int |
skipBytes(int n) |
available, close, getPosition, mark, markSupported, read, read, read, reset, size, skippublic BytesInputStream(int size)
size - the size of the input buffer.public BytesInputStream(byte[] data)
data - a byte array containing data to be read.public void reset(byte[] data)
data - a byte array with data to be read.public void reset(byte[] data,
int length)
data - a byte array with data to be read.length - the length of the buffer to be considered.public void reset(int length)
length - the length of the buffer to be considered.public int skip(int n)
n - the number of bytes to be skipped as int.public byte[] getBuffer()
getBuffer in class FastByteArrayInputStreampublic int getBufferLength()
public 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 skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionCopyright © 2017. All rights reserved.