Java java.util.zip DeflaterOutputStream fields, constructors, methods, implement or subclass

Example usage for Java java.util.zip DeflaterOutputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.zip DeflaterOutputStream.

The text is from its open source code.

Constructor

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.

Method

voidclose()
Writes remaining compressed data to the output stream and closes the underlying stream.
voidfinish()
Finishes writing compressed data to the output stream without closing the underlying stream.
voidflush()
Flushes the compressed output stream.
voidwrite(int b)
Writes a byte to the compressed output stream.
voidwrite(byte[] b, int off, int len)
Writes an array of bytes to the compressed output stream.