Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.InputStream

Availability: JDK 1.0

public abstract class InputStream extends Object {
   // Default Constructor: public InputStream()
   // Public Instance Methods
      public int available() throws IOException;
      public void close() throws IOException;
      public synchronized void mark(int readlimit);
      public boolean markSupported();
      public abstract int read() throws IOException;
      public int read(byte[] b) throws IOException;
      public int read(byte[] b, int off, int len) throws IOException;
      public synchronized void reset() throws IOException;
      public long skip(long n) throws IOException;
}
Extended By:
ByteArrayInputStream, FileInputStream, FilterInputStream, ObjectInputStream, PipedInputStream, SequenceInputStream, StringBufferInputStream.
Passed To:
BufferedInputStream.BufferedInputStream(), Certificate.decode(), CheckedInputStream.CheckedInputStream(), DataInputStream.DataInputStream(), DigestInputStream.DigestInputStream(), FilterInputStream.FilterInputStream(), GZIPInputStream.GZIPInputStream(), InflaterInputStream.InflaterInputStream(), InputStreamReader.InputStreamReader(), LineNumberInputStream.LineNumberInputStream(), ObjectInputStream.ObjectInputStream(), PreparedStatement.setAsciiStream(), PreparedStatement.setBinaryStream(), PreparedStatement.setUnicodeStream(), Properties.load(), PropertyResourceBundle.PropertyResourceBundle(), PushbackInputStream.PushbackInputStream(), Runtime.getLocalizedInputStream(), SequenceInputStream.SequenceInputStream(), StreamTokenizer.StreamTokenizer(), System.setIn(), URLConnection.guessContentTypeFromStream(), ZipInputStream.ZipInputStream().
Returned By:
Class.getResourceAsStream(), ClassLoader.getResourceAsStream(), ClassLoader.getSystemResourceAsStream(), Process.getErrorStream(), Process.getInputStream(), ResultSet.getAsciiStream(), ResultSet.getBinaryStream(), ResultSet.getUnicodeStream(), Runtime.getLocalizedInputStream(), Socket.getInputStream(), SocketImpl.getInputStream(), URL.openStream(), URLConnection.getInputStream(), ZipFile.getInputStream().
Type Of:
FilterInputStream.in, System.in.

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