Introduction
Declaration Public abstract class Java.io FilterWriter extends Writer
Fields
Table | Constructor | Description |
|---|---|
| Protected FilterWriter(Writer out) | The function of this constructor is to create the filer writer instance and used to write from output stream. |
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 flush () | The function of this method is to flush the specified output stream. |
| void write (int c) | The function of this method is to write the represented character into output stream. |
| void write (Char[] cbuf, int off, int n) | By using this method it writes the data up to ‘n’ length from the output stream to an array of Characters. |
Description
Examples
Key Points