Example usage for Java java.util.zip GZIPInputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
int | GZIP_MAGIC GZIP header magic number. |
GZIPInputStream(InputStream in) Creates a new input stream with a default buffer size. | |
GZIPInputStream(InputStream in, int size) Creates a new input stream with the specified 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[] buf, int off, int len) Reads uncompressed data into an array of bytes. |
int | read(byte b[]) Reads up to b.length bytes of data from this input stream into an array of bytes. |