Introduction
Declaration Public class FilterOutputStream extends OutputStream
Fields
Table | Constructor | Description |
|---|---|
| Protected FilterOutputStream(Out putStream out) | The function of this constructor is to create the filer output stream instance and used to write based on the supplied argument. |
Table | Method | Description |
|---|---|
| void close () | The function of this method is to close the present stream and associated to input stream systems resources are released. |
| void write (int b) | The function of this method is to write the represented byte into output stream. |
| void flush () | The function of this method is to flush the specified output stream. |
| void write (byte[] b, int off, int n) | By using this method it writes the data up to ‘n’ bytes from the output stream to an array of bytes. |
Description
Examples
Key Points