public class BufferedInputStream extends FilterInputStream
| Modifier and Type | Field and Description |
|---|---|
protected byte[] |
buf |
protected int |
count |
protected int |
marklimit |
protected int |
markpos |
protected int |
pos |
in| Constructor and Description |
|---|
BufferedInputStream(InputStream var0) |
BufferedInputStream(InputStream var0,
int var1) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
void |
mark(int var0) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] var0,
int var1,
int var2) |
void |
reset() |
long |
skip(long var0) |
readprotected byte[] buf
protected int count
protected int marklimit
protected int markpos
protected int pos
public BufferedInputStream(InputStream var0)
public BufferedInputStream(InputStream var0, int var1)
public int available()
throws IOException
available in class FilterInputStreamIOExceptionpublic void close()
throws IOException
close in class FilterInputStreamIOExceptionpublic void mark(int var0)
mark in class FilterInputStreampublic boolean markSupported()
markSupported in class FilterInputStreampublic int read()
throws IOException
read in class FilterInputStreamIOExceptionpublic int read(byte[] var0,
int var1,
int var2)
throws IOException
read in class FilterInputStreamIOExceptionpublic void reset()
throws IOException
reset in class FilterInputStreamIOExceptionpublic long skip(long var0)
throws IOException
skip in class FilterInputStreamIOException