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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

FilterReader(Reader in)
Creates a new filtered reader.

Method

voidmark(int readAheadLimit)
Marks the present position in the stream.
booleanmarkSupported()
Tells whether this stream supports the mark() operation.
intread()
Reads a single character.
intread(char cbuf[], int off, int len)
Reads characters into a portion of an array.
booleanready()
Tells whether this stream is ready to be read.
voidreset()
Resets the stream.
longskip(long n)
Skips characters.