DeflaterOutputStream
JDK Doc(JAVA)Download this dictionary
DeflaterOutputStream
- class java.util.zip..DeflaterOutputStream 
public class DeflaterOutputStream extends FilterOutputStream 
Tree:java.lang.Object - java.io.OutputStream - java.io.FilterOutputStream - java.util.zip.DeflaterOutputStream
This class implements an output stream filter for compressing data in the "deflate" compression format. It is also used as the basis for other types of compression filters, such as GZIPOutputStream.
 
DeflaterOutputStream(OutputStream)
- Constructor for class java.util.zip.DeflaterOutputStream 
public DeflaterOutputStream (OutputStream  out)
Creates a new output stream with a defaul compressor and buffer size.
 
DeflaterOutputStream(OutputStream, Deflater)
- Constructor for class java.util.zip.DeflaterOutputStream 
public DeflaterOutputStream (OutputStream  out, Deflater  def)
Creates a new output stream with the specified compressor and a default buffer size.Parameters: out - the output stream - the compressor ("deflater")def - the compressor ("deflater")
 
DeflaterOutputStream(OutputStream, Deflater, int)
- Constructor for class java.util.zip.DeflaterOutputStream 
public DeflaterOutputStream (OutputStream  out, Deflater  def, int size)
Creates a new output stream with the specified compressor and buffer size.Parameters: out - the output stream - the compressor ("deflater")def - the compressor ("deflater") - the output buffer sizelen - the output buffer sizeThrows: IllegalArgumentException - if size is <= 0


| DeflaterOutputStream in English