Package java.io
Class BufferedReader

Public Method read

int read()

Overrides:

Throws:

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

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

read() method:

Read a single character.

read(char[] buf, int offset, int count) method:

Read count characters into the array buf, starting at index offset. Returns the number of characters read of -1 if the end of the stream has been reached.