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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

FilterWriter(Writer out)
Create a new filtered writer.

Method

voidflush()
Flushes the stream.
voidwrite(int c)
Writes a single character.
voidwrite(char cbuf[], int off, int len)
Writes a portion of an array of characters.
voidwrite(String str, int off, int len)
Writes a portion of a string.