Known Direct Subclasses
GZIPOutputStream |
This class implements a stream filter for writing compressed data in
the GZIP file format. |
ZipOutputStream |
This class implements an output stream filter for writing files in the
ZIP file format. |
|
Known Indirect Subclasses
JarOutputStream |
The JarOutputStream class is used to write the contents
of a JAR file to any output stream. |
|
Class Overview
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.
Summary
Fields |
protected
byte[] |
buf |
Output buffer for writing compressed data. |
protected
Deflater |
def |
Compressor for this stream. |
Public Methods |
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[] b, int off, int len)
Writes an array of bytes to the compressed output stream.
|
void
|
write(int b)
Writes a byte to the compressed output stream.
|
Protected Methods |
void
|
deflate()
Writes next block of compressed data to the output stream.
|
[Expand]
Inherited Methods |
From class
java.io.FilterOutputStream
void
|
close()
Closes this output stream and releases any system resources
associated with the stream.
|
void
|
flush()
Flushes this output stream and forces any buffered output bytes
to be written out to the stream.
|
void
|
write(byte[] b, int off, int len)
Writes len bytes from the specified
byte array starting at offset off to
this output stream.
|
void
|
write(byte[] b)
Writes b.length bytes to this output stream.
|
void
|
write(int b)
Writes the specified byte to this output stream.
|
|
From class
java.io.OutputStream
void
|
close()
Closes this output stream and releases any system resources
associated with this stream.
|
void
|
flush()
Flushes this output stream and forces any buffered output bytes
to be written out.
|
void
|
write(byte[] b, int off, int len)
Writes len bytes from the specified byte array
starting at offset off to this output stream.
|
void
|
write(byte[] b)
Writes b.length bytes from the specified byte array
to this output stream.
|
abstract
void
|
write(int b)
Writes the specified byte to this output stream.
|
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
final
void
|
wait(long timeout, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long timeout)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
|
From interface
java.io.Closeable
abstract
void
|
close()
Closes this stream and releases any system resources associated
with it.
|
|
From interface
java.io.Flushable
abstract
void
|
flush()
Flushes this stream by writing any buffered output to the underlying
stream.
|
|
Fields
protected
byte[]
buf
Output buffer for writing compressed data.
Compressor for this stream.
Public Constructors
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 |
def
| the compressor ("deflater") |
size
| the output buffer size |
Creates a new output stream with the specified compressor and
a default buffer size.
Parameters
out
| the output stream |
def
| the compressor ("deflater")
|
public
DeflaterOutputStream
(OutputStream out)
Creates a new output stream with a default compressor and buffer size.
Public Methods
public
void
close
()
Writes remaining compressed data to the output stream and closes the
underlying stream.
public
void
finish
()
Finishes writing compressed data to the output stream without closing
the underlying stream. Use this method when applying multiple filters
in succession to the same output stream.
public
void
write
(byte[] b, int off, int len)
Writes an array of bytes to the compressed output stream. This
method will block until all the bytes are written.
Parameters
b
| the data to be written |
off
| the start offset of the data |
len
| the length of the data |
public
void
write
(int b)
Writes a byte to the compressed output stream. This method will
block until the byte can be written.
Protected Methods
protected
void
deflate
()
Writes next block of compressed data to the output stream.