Example usage for Java java.io OutputStreamWriter fields, constructors, methods, implement or subclass
The text is from its open source code.
OutputStreamWriter(OutputStream out) Creates an OutputStreamWriter that uses the default character encoding. | |
OutputStreamWriter(OutputStream out, String charsetName) Creates an OutputStreamWriter that uses the named charset. | |
OutputStreamWriter(OutputStream out, Charset cs) Creates an OutputStreamWriter that uses the given charset. | |
OutputStreamWriter(OutputStream out, CharsetEncoder enc) Creates an OutputStreamWriter that uses the given charset encoder. |
Writer | append(CharSequence csq) |
void | close() |
void | flush() Flushes the stream. |
String | getEncoding() Returns the name of the character encoding being used by this stream. |
String | toString() Returns a string representation of the object. |
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. |