public class FastInputStream extends InputStream implements DataInput
| 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() |
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, skipprotected 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 InputStreamIOExceptionpublic int peek()
throws IOException
IOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic int readWrappedStream(byte[] target,
int offset,
int len)
throws IOException
IOExceptionpublic long position()
public void refill()
throws IOException
IOExceptionpublic int available()
throws IOException
available in class InputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in class InputStreamIOExceptionpublic 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 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 © 2000-2013 Apache Software Foundation. All Rights Reserved.