KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > zip > GZIPOutputStream

java.util.zip
Class GZIPOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FilterOutputStream
          extended by java.util.zip.DeflaterOutputStream
              extended by java.util.zip.GZIPOutputStream
All Implemented Interfaces:
Closeable, Flushable
See Also:
Top Examples, Source Code

public void close()
           throws IOException
See Also:
DeflaterOutputStream
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected CRC32 crc
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void finish()
            throws IOException
See Also:
DeflaterOutputStream
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public GZIPOutputStream(OutputStream out)
                 throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public GZIPOutputStream(OutputStream out,
                        int size)
                 throws IOException
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void write(byte[] buf,
                  int off,
                  int len)
           throws IOException
See Also:
FilterOutputStream.write(int), DeflaterOutputStream
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags