public class FilterInputStream extends InputStream
| Modifier and Type | Field and Description |
|---|---|
protected InputStream |
in
in
|
| Modifier | Constructor and Description |
|---|---|
protected |
FilterInputStream(InputStream inputstream)
FilterInputStream
|
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
void |
mark(int i) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] abyte0) |
int |
read(byte[] abyte0,
int i,
int j)
Read byte data until there is no more available.
|
void |
reset() |
long |
skip(long l) |
protected InputStream in
protected FilterInputStream(InputStream inputstream)
inputstream - ?public int available()
throws IOException
available in class InputStreamIOException - ?public void close()
throws IOException
close in class InputStreamIOException - ?public void mark(int i)
mark in class InputStreami - ?public boolean markSupported()
markSupported in class InputStreampublic int read()
throws IOException
read in class InputStreamIOException - ?public int read(byte[] abyte0)
throws IOException
read in class InputStreamabyte0 - ?IOException - ?public int read(byte[] abyte0,
int i,
int j)
throws IOException
InputStreamread in class InputStreamabyte0 - ?i - ?j - ?IOException - ?public void reset()
throws IOException
reset in class InputStreamIOException - ?public long skip(long l)
throws IOException
skip in class InputStreaml - ?IOException - ?