Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class InputStreamReader extends Reader {
   // Public Constructors
      public InputStreamReader(InputStream in);
      public InputStreamReader(InputStream in, String enc) throws UnsupportedEncodingException;
   // Public Instance Methods
      public void close() throws IOException;  // Defines Reader.close()
      public String getEncoding();
      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()
}