Class java.io.InputStreamReader (1.1)
public class InputStreamReader extends Reader {
// Public Constructors
public InputStreamReader(InputStream in);
public InputStreamReader(InputStream in, String enc) throws UnsupportedEncodingException;
public InputStreamReader(InputStream in, int sz) throws IllegalArgumentException;
public InputStreamReader(InputStream in, String enc, int sz) throws UnsupportedEncodingException, IllegalArgumentException;
public InputStreamReader(InputStream in, ByteToCharConverter btc);
public InputStreamReader(InputStream in, ByteToCharConverter btc, int sz) throws IllegalArgumentException;
// Public Instance Methods
public void close( ) throws IOException; // Defines Reader.close( )
public String getCharacterEncoding( ) throws IOException;
public int read( ) throws IOException; // Overrides Reader.read( )
public int read(char[ ] cbuf, int off, int len) throws IOException; // Defines Reader.read( )
public boolean ready( ) throws IOException; // Overrides Reader.ready( )
}