public class FastInputStream extends DataInputInputStream
Modifier and Type | Field and Description |
---|---|
protected byte[] |
buf |
protected int |
end |
protected InputStream |
in |
protected int |
pos |
protected long |
readFromStream |
Constructor and Description |
---|
FastInputStream(InputStream in) |
FastInputStream(InputStream in,
byte[] tempBuffer,
int start,
int end) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
byte[] |
getBuffer()
Returns the internal buffer used for caching
|
int |
getEndInBuffer()
Current end-of-data position within the internal buffer.
|
int |
getPositionInBuffer()
Current position within the internal buffer
|
int |
peek() |
long |
position() |
int |
read() |
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() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
int |
readWrappedStream(byte[] target,
int offset,
int len) |
void |
refill() |
int |
skipBytes(int n) |
static FastInputStream |
wrap(InputStream in) |
mark, markSupported, read, reset, skip
protected final InputStream in
protected final byte[] buf
protected int pos
protected int end
protected long readFromStream
public FastInputStream(InputStream in)
public FastInputStream(InputStream in, byte[] tempBuffer, int start, int end)
public static FastInputStream wrap(InputStream in)
public int read() throws IOException
read
in class InputStream
IOException
public int peek() throws IOException
IOException
public int readUnsignedByte() throws IOException
IOException
public int readWrappedStream(byte[] target, int offset, int len) throws IOException
IOException
public long position()
public void refill() throws IOException
IOException
public int available() throws IOException
available
in class InputStream
IOException
public byte[] getBuffer()
public int getPositionInBuffer()
public int getEndInBuffer()
public int read(byte[] b, int off, int len) throws IOException
read
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class InputStream
IOException
public void readFully(byte[] b) throws IOException
IOException
public void readFully(byte[] b, int off, int len) throws IOException
IOException
public int skipBytes(int n) throws IOException
IOException
public boolean readBoolean() throws IOException
IOException
public byte readByte() throws IOException
IOException
public short readShort() throws IOException
IOException
public int readUnsignedShort() throws IOException
IOException
public char readChar() throws IOException
IOException
public int readInt() throws IOException
IOException
public long readLong() throws IOException
IOException
public float readFloat() throws IOException
IOException
public double readDouble() throws IOException
IOException
public String readLine() throws IOException
IOException
public String readUTF() throws IOException
IOException
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.