Java org.apache.commons.io.input ReaderInputStream fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.io.input.ReaderInputStream has subclasses.
Click this link to see all its subclasses.

Constructor

ReaderInputStream(Reader reader)
Construct a new ReaderInputStream that uses the default character encoding with a default input buffer size of 1024 characters.
ReaderInputStream(Reader reader, Charset charset)
Construct a new ReaderInputStream with a default input buffer size of 1024 characters.
ReaderInputStream(Reader reader, String charsetName)
Construct a new ReaderInputStream with a default input buffer size of 1024 characters.

Method

voidclose()
Close the stream.
intread(byte[] b)
Read the specified number of bytes into an array.
StringtoString()
Returns a string representation of the object.