Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.InputStreamReader

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()
}
Extended By:
FileReader.

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.