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 InputStream
IOException
- ?public void close() throws IOException
close
in class InputStream
IOException
- ?public void mark(int i)
mark
in class InputStream
i
- ?public boolean markSupported()
markSupported
in class InputStream
public int read() throws IOException
read
in class InputStream
IOException
- ?public int read(byte[] abyte0) throws IOException
read
in class InputStream
abyte0
- ?IOException
- ?public int read(byte[] abyte0, int i, int j) throws IOException
InputStream
read
in class InputStream
abyte0
- ?i
- ?j
- ?IOException
- ?public void reset() throws IOException
reset
in class InputStream
IOException
- ?public long skip(long l) throws IOException
skip
in class InputStream
l
- ?IOException
- ?