Example usage for Java java.io BufferedWriter fields, constructors, methods, implement or subclass
The text is from its open source code.
BufferedWriter(Writer out) Creates a buffered character-output stream that uses a default-sized output buffer. | |
BufferedWriter(Writer out, int sz) Creates a new buffered character-output stream that uses an output buffer of the given size. |
Writer | append(CharSequence csq) Appends the specified character sequence to this writer. |
void | close() |
void | flush() Flushes the stream. |
void | newLine() Writes a line separator. |
String | toString() Returns a string representation of the object. |
void | write(char cbuf[], int off, int len) Writes a portion of an array of characters. |
void | write(String s, int off, int len) Writes a portion of a String. |
void | write(int c) Writes a single character. |