Example usage for Java java.util.zip DeflaterOutputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
DeflaterOutputStream(OutputStream out) Creates a new output stream with a default compressor and buffer size. | |
DeflaterOutputStream(OutputStream out, Deflater def) Creates a new output stream with the specified compressor and a default buffer size. | |
DeflaterOutputStream(OutputStream out, boolean syncFlush) Creates a new output stream with a default compressor, a default buffer size and the specified flush mode. | |
DeflaterOutputStream(OutputStream out, Deflater def, int size) Creates a new output stream with the specified compressor and buffer size. | |
DeflaterOutputStream(OutputStream out, Deflater def, boolean syncFlush) Creates a new output stream with the specified compressor, flush mode and a default buffer size. |
void | close() Writes remaining compressed data to the output stream and closes the underlying stream. |
void | finish() Finishes writing compressed data to the output stream without closing the underlying stream. |
void | flush() Flushes the compressed output stream. |
void | write(int b) Writes a byte to the compressed output stream. |
void | write(byte[] b, int off, int len) Writes an array of bytes to the compressed output stream. |