Java org.apache.commons.io.output WriterOutputStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.output WriterOutputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.output WriterOutputStream.

The text is from its open source code.

Subclass

org.apache.commons.io.output.WriterOutputStream has subclasses.
Click this link to see all its subclasses.

Constructor

WriterOutputStream(Writer writer)
Constructs a new WriterOutputStream that uses the default character encoding and with a default output buffer size of 1024 characters.
WriterOutputStream(Writer writer, Charset charset)
Constructs a new WriterOutputStream with a default output buffer size of 1024 characters.
WriterOutputStream(Writer writer, String charsetName)
Constructs a new WriterOutputStream with a default output buffer size of 1024 characters.
WriterOutputStream(Writer writer, Charset charset, int bufferSize, boolean writeImmediately)
Constructs a new WriterOutputStream .
WriterOutputStream(Writer writer, String charsetName, int bufferSize, boolean writeImmediately)
Constructs a new WriterOutputStream .

Method

voidclose()
Close the stream.
voidflush()
Flush the stream.
voidwrite(byte[] b)
Write bytes from the specified byte array to the stream.
voidwrite(int b)
Write a single byte to the stream.