Fields
| Name | Description |
|---|---|
| out | The underlying output stream. |
Constructors
| Name | Description |
|---|---|
| FilterOutputStream(OutputStream) | Creates an output stream filter built on top of the specified underlying output stream. |
Methods
| Name | Description |
|---|---|
| close() | Closes this output stream and releases any system resources associated with the stream. |
| flush() | Flushes this output stream and forces any buffered output bytes to be written out to the stream. |
| write(byte[]) | Writes b.length bytes to this output stream. |
| write(byte[], int, int) | Writes len bytes from the specified byte array starting at offset off to this output stream. |
| write(int) | Writes the specified byte to this output stream. |