| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.OutputStream
java.io.FilterOutputStream
java.util.zip.DeflaterOutputStream
java.util.zip.GZIPOutputStream
public class GZIPOutputStream
This class implements a stream filter for writing compressed data in the GZIP file format.
| Field Summary | |
|---|---|
| protected  CRC32 | crcCRC-32 of uncompressed data. | 
| Fields inherited from class java.util.zip.DeflaterOutputStream | 
|---|
| buf, def | 
| Fields inherited from class java.io.FilterOutputStream | 
|---|
| out | 
| Constructor Summary | |
|---|---|
| GZIPOutputStream(OutputStream out)Creates a new output stream with a default buffer size. | |
| GZIPOutputStream(OutputStream out,
                 int size)Creates a new output stream with the specified buffer size. | |
| Method Summary | |
|---|---|
|  void | finish()Finishes writing compressed data to the output stream without closing the underlying stream. | 
|  void | write(byte[] buf,
      int off,
      int len)Writes array of bytes to the compressed output stream. | 
| Methods inherited from class java.util.zip.DeflaterOutputStream | 
|---|
| close, deflate, write | 
| Methods inherited from class java.io.FilterOutputStream | 
|---|
| flush, write | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
protected CRC32 crc
| Constructor Detail | 
|---|
public GZIPOutputStream(OutputStream out,
                        int size)
                 throws IOException
out - the output streamsize - the output buffer size
IOException - If an I/O error has occurred.
IllegalArgumentException - if size is <= 0
public GZIPOutputStream(OutputStream out)
                 throws IOException
out - the output stream
IOException - If an I/O error has occurred.| Method Detail | 
|---|
public void write(byte[] buf,
                  int off,
                  int len)
           throws IOException
write in class DeflaterOutputStreambuf - the data to be writtenoff - the start offset of the datalen - the length of the data
IOException - If an I/O error has occurred.FilterOutputStream.write(int)
public void finish()
            throws IOException
finish in class DeflaterOutputStreamIOException - if an I/O error has occurred| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.