Example usage for Java java.io Writer fields, constructors, methods, implement or subclass
The text is from its open source code.
Writer() Creates a new character-stream writer whose critical sections will synchronize on the writer itself. |
Writer | append(CharSequence csq) Appends the specified character sequence to this writer. |
Writer | append(char c) Appends the specified character to this writer. |
Writer | append(CharSequence csq, int start, int end) Appends a subsequence of the specified character sequence to this writer. |
void | close() Closes the stream, flushing it first. |
void | flush() Flushes the stream. |
Class> | getClass() Returns the runtime class of this Object . |
String | toString() Returns a string representation of the object. |
void | write(int c) Writes a single character. |
void | write(char cbuf[]) Writes an array of characters. |
void | write(String str) Writes a string. |
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. |