public class FastInputStream extends DataInputInputStream
| 限定符和类型 | 字段和说明 |
|---|---|
protected byte[] |
buf |
protected int |
end |
protected InputStream |
in |
protected int |
pos |
protected long |
readFromStream |
| 构造器和说明 |
|---|
FastInputStream(InputStream in) |
FastInputStream(InputStream in,
byte[] tempBuffer,
int start,
int end) |
| 限定符和类型 | 方法和说明 |
|---|---|
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) |
readDirectByteBuffermark, 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 在类中 InputStreamIOExceptionpublic int peek()
throws IOException
IOExceptionpublic int readUnsignedByte()
throws IOException
IOExceptionpublic int readWrappedStream(byte[] target,
int offset,
int len)
throws IOException
IOExceptionpublic long position()
public void refill()
throws IOException
IOExceptionpublic int available()
throws IOException
available 在类中 InputStreamIOExceptionpublic byte[] getBuffer()
public int getPositionInBuffer()
public int getEndInBuffer()
public int read(byte[] b,
int off,
int len)
throws IOException
read 在类中 InputStreamIOExceptionpublic void close()
throws IOException
close 在接口中 Closeableclose 在接口中 AutoCloseableclose 在类中 InputStreamIOExceptionpublic void readFully(byte[] b)
throws IOException
IOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
IOExceptionpublic int skipBytes(int n)
throws IOException
IOExceptionpublic boolean readBoolean()
throws IOException
IOExceptionpublic byte readByte()
throws IOException
IOExceptionpublic short readShort()
throws IOException
IOExceptionpublic int readUnsignedShort()
throws IOException
IOExceptionpublic char readChar()
throws IOException
IOExceptionpublic int readInt()
throws IOException
IOExceptionpublic long readLong()
throws IOException
IOExceptionpublic float readFloat()
throws IOException
IOExceptionpublic double readDouble()
throws IOException
IOExceptionpublic String readLine() throws IOException
IOExceptionpublic String readUTF() throws IOException
IOExceptionCopyright © 2006–2022 The Apache Software Foundation. All rights reserved.