Example usage for Java java.util.zip InflaterInputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
InflaterInputStream(InputStream in) Creates a new input stream with a default decompressor and buffer size. | |
InflaterInputStream(InputStream in, Inflater inf) Creates a new input stream with the specified decompressor and a default buffer size. | |
InflaterInputStream(InputStream in, Inflater inf, int size) Creates a new input stream with the specified decompressor and buffer size. |
int | available() Returns 0 after EOF has been reached, otherwise always return 1. |
void | close() Closes this input stream and releases any system resources associated with the stream. |
int | read() Reads a byte of uncompressed data. |
int | read(byte b[]) Reads up to b.length bytes of data from this input stream into an array of bytes. |
int | read(byte[] b, int off, int len) Reads uncompressed data into an array of bytes. |