|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.OutputStream
com.mot.iden.zip.FilterOutputStream
com.mot.iden.zip.DeflaterOutputStream
com.mot.iden.zip.GZIPOutputStream
This class implements a stream filter for writing compressed data in the GZIP file format.
Field Summary | |
protected CRC32 |
crc
CRC-32 of uncompressed data. |
Fields inherited from class com.mot.iden.zip.DeflaterOutputStream |
buf, def, usesDefaultDeflater |
Fields inherited from class com.mot.iden.zip.FilterOutputStream |
out |
Constructor Summary | |
GZIPOutputStream(java.io.OutputStream out)
Creates a new output stream with a default buffer size. |
|
GZIPOutputStream(java.io.OutputStream out,
int size)
Creates a new output stream with the specified buffer size. |
Method Summary | |
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 |
write(byte[] buf,
int off,
int len)
Writes array of bytes to the compressed output stream. |
Methods inherited from class com.mot.iden.zip.DeflaterOutputStream |
deflate, write |
Methods inherited from class com.mot.iden.zip.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(java.io.OutputStream out, int size) throws java.io.IOException
out
- the output streamsize
- the output buffer size
java.io.IOException
- If an I/O error has occurred.
java.lang.IllegalArgumentException
- if size is <= 0public GZIPOutputStream(java.io.OutputStream out) throws java.io.IOException
out
- the output stream
java.io.IOException
- If an I/O error has occurred.Method Detail |
public void write(byte[] buf, int off, int len) throws java.io.IOException
write
in class DeflaterOutputStream
buf
- the data to be writtenoff
- the start offset of the datalen
- the length of the data
java.io.IOException
- If an I/O error has occurred.public void finish() throws java.io.IOException
finish
in class DeflaterOutputStream
java.io.IOException
- if an I/O error has occurredpublic void close() throws java.io.IOException
close
in class DeflaterOutputStream
java.io.IOException
- if an I/O error has occurred
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |