Package java.io
Class Reader

Public Method read

int read()

Throws:

int read(char[] buf)

Throws:

abstract int read(char[] buf, int offset, int count)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

read() method:

The read method reads a single character and will block until this character is available, an I/O error occurs, or the end of the stream is reached. Subclasses that intend to support efficient single characters input should override this method.

read(char[] buffer) method:

This method reads characters into an array. This method will block until some input is available, an I/O error occurs, or the end of the stream is reached.

read(char[] buffer, int offset, int len) method:

This method reads characters into a portion of an array. This method will block until some input is available, an I/O error occurs, or the end of the stream is reached.