Class java.io.FileInputStream (1.0)


public class FileInputStream extends InputStream {
  // Public Constructors
    public FileInputStream(String name) throws FileNotFoundException, IOException;
    public FileInputStream(File file) throws FileNotFoundException, IOException;
    public FileInputStream(FileDescriptor fdObj);
  // Public Instance Methods
    public int available( ) throws IOException;  // Defines InputStream.available( )
    public void close( ) throws IOException;  // Overrides InputStream.close( )
    public final FileDescriptor getFD( ) throws IOException;
    public 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 long skip(long n) throws IOException;  // Overrides InputStream.skip( )
  // Protected Instance Methods
    protected void finalize( ) throws IOException;  // Overrides Object.finalize( )
}