Example usage for Java java.util.zip InflaterOutputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
InflaterOutputStream(OutputStream out) Creates a new output stream with a default decompressor and buffer size. | |
InflaterOutputStream(OutputStream out, Inflater infl) Creates a new output stream with the specified decompressor and a default buffer size. |
void | close() Writes any remaining uncompressed data to the output stream and closes the underlying output stream. |
void | write(int b) Writes a byte to the uncompressed output stream. |
void | write(byte[] b, int off, int len) Writes an array of bytes to the uncompressed output stream. |