Java java.io BufferedWriter fields, constructors, methods, implement or subclass

Example usage for Java java.io BufferedWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.io BufferedWriter.

The text is from its open source code.

Subclass

java.io.BufferedWriter has subclasses.
Click this link to see all its subclasses.

Constructor

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.

Method

Writerappend(CharSequence csq)
Appends the specified character sequence to this writer.
voidclose()
voidflush()
Flushes the stream.
voidnewLine()
Writes a line separator.
StringtoString()
Returns a string representation of the object.
voidwrite(char cbuf[], int off, int len)
Writes a portion of an array of characters.
voidwrite(String s, int off, int len)
Writes a portion of a String.
voidwrite(int c)
Writes a single character.