java.lang.Object | |||||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | java.io.Writer | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | BufferedWriter | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | CharArrayWriter | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | FilterWriter | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | OutputStreamWriter | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | PipedWriter | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | PrintWriter | ||||||||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||||||||||
| | - | - | StringWriter | ||||||||||||||||||||||||||||||||||||||||||||
Abstract class for writing to character streams.
Return | Method | Summary |
---|---|---|
Writer | append(char c) | Appends the specified character to this writer. |
Writer | append(CharSequence csq) | Appends the specified character sequence to this writer. |
Writer | append(CharSequence csq, int start, int end) | Appends a subsequence of the specified character sequence to this writer. |
abstract void | close() | Closes the stream, flushing it first. |
abstract void | flush() | Flushes the stream. |
void | write(char[] cbuf) | Writes an array of characters. |
abstract void | write(char[] cbuf, int off, int len) | Writes a portion of an array of characters. |
void | write(int c) | Writes a single character. |
void | write(String str) | Writes a string. |
void | write(String str, int off, int len) | Writes a portion of a string. |
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |