java.lang.Object
java.io.InputStream
java.io.FilterInputStream
java.util.zip.InflaterInputStream
- All Implemented Interfaces:
- Closeable
- Direct Known Subclasses:
- GZIPInputStream, ZipInputStream
- See Also:
- Top Examples, Source Code,
Inflater
public int available()
throws IOException
- See Also:
FilterInputStream.in
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected byte[] buf
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void close()
throws IOException
- See Also:
FilterInputStream.in
, Closeable
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected void fill()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected Inflater inf
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public InflaterInputStream(InputStream in)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public InflaterInputStream(InputStream in,
Inflater inf)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public InflaterInputStream(InputStream in,
Inflater inf,
int size)
- See Also:
- IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected int len
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void mark(int readlimit)
- See Also:
InputStream.reset()
, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean markSupported()
- See Also:
InputStream.reset()
, InputStream.mark(int)
, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int read()
throws IOException
- See Also:
FilterInputStream.in
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int read(byte[] b,
int off,
int len)
throws IOException
- See Also:
FilterInputStream.in
, ZipException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void reset()
throws IOException
- See Also:
-
InputStream.mark(int)
, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public long skip(long n)
throws IOException
- See Also:
- IllegalArgumentException, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples