Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.FileInputStream

Availability: JDK 1.0

public class FileInputStream extends InputStream {
   // Public Constructors
      public FileInputStream(String name) throws FileNotFoundException;
      public FileInputStream(File file) throws FileNotFoundException;
      public FileInputStream(FileDescriptor fdObj);
   // Public Instance Methods
      public native int available() throws IOException;  // Overrides InputStream.available()
      public native void close() throws IOException;  // Overrides InputStream.close()
      public final FileDescriptor getFD() throws IOException;
      public native int read() throws IOException;  // Defines InputStream.read()
      public int read(byte[] b) throws IOException;  // Overrides InputStream.read()
      public int read(byte[] b, int off, int len) throws IOException;  // Overrides InputStream.read()
      public native long skip(long n) throws IOException;  // Overrides InputStream.skip()
   // Protected Instance Methods
      protected void finalize() throws IOException;  // Overrides Object.finalize()
}

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