Package java.util.zip
Class InflaterInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- java.util.zip.InflaterInputStream
-
- Direct Known Subclasses:
GZIPInputStream,ZipInputStream
public class InflaterInputStream extends FilterInputStream
-
-
Constructor Summary
Constructors Constructor Description InflaterInputStream(InputStream var0)InflaterInputStream(InputStream var0, Inflater var1)InflaterInputStream(InputStream var0, Inflater var1, int var2)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()voidclose()protected voidfill()intread()intread(byte[] var0, int var1, int var2)longskip(long var0)-
Methods inherited from class java.io.FilterInputStream
mark, markSupported, read, reset
-
-
-
-
Field Detail
-
inf
protected Inflater inf
-
buf
protected byte[] buf
-
len
protected int len
-
-
Constructor Detail
-
InflaterInputStream
public InflaterInputStream(InputStream var0)
-
InflaterInputStream
public InflaterInputStream(InputStream var0, Inflater var1)
-
InflaterInputStream
public InflaterInputStream(InputStream var0, Inflater var1, int var2)
-
-
Method Detail
-
read
public int read() throws IOException- Overrides:
readin classFilterInputStream- Throws:
IOException
-
read
public int read(byte[] var0, int var1, int var2) throws IOException- Overrides:
readin classFilterInputStream- Throws:
IOException
-
fill
protected void fill() throws IOException- Throws:
IOException
-
skip
public long skip(long var0) throws IOException- Overrides:
skipin classFilterInputStream- Throws:
IOException
-
available
public int available() throws IOException- Overrides:
availablein classFilterInputStream- Throws:
IOException
-
close
public void close() throws IOException- Overrides:
closein classFilterInputStream- Throws:
IOException
-
-