Example usage for Java java.io FilterWriter fields, constructors, methods, implement or subclass
The text is from its open source code.
FilterWriter(Writer out) Create a new filtered writer. |
void | flush() Flushes the stream. |
void | write(int c) Writes a single character. |
void | write(char cbuf[], int off, int len) Writes a portion of an array of characters. |
void | write(String str, int off, int len) Writes a portion of a string. |