Constructors
Name | Description |
---|---|
BufferedWriter(Writer) | Create a buffered character-output stream that uses a default-sized output buffer. |
BufferedWriter(Writer, int) | Create a new buffered character-output stream that uses an output buffer of the given size. |
Methods
Name | Description |
---|---|
close() | Close the stream. |
flush() | Flush the stream. |
newLine() | Write a line separator. |
write(char[], int, int) | Write a portion of an array of characters. |
write(int) | Write a single character. |
write(String, int, int) | Write a portion of a String. |