All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.jos.java.io.FileInputStream

java.lang.Object
    |
    +----org.jos.java.io.InputStream
            |
            +----org.jos.java.io.FileInputStream

public class FileInputStream
extends InputStream
JOS replacement of a standard Java IO class.

based on kore-0.0.7 by Glynn Clements

Version:
JOS-FileSystem 4 Preview (25-Mar-98)
Author:
Glynn Clements
Author:
Stefan Reich

Constructor Index

 o FileInputStream(File)
 o FileInputStream(FileDescriptor)
 o FileInputStream(String)

Method Index

 o available()
 o close()
 o getFD()
 o read()
 o read(byte[])
 o read(byte[], int, int)
 o skip(long)

Constructors

 o FileInputStream
public FileInputStream(String name) throws FileNotFoundException
 o FileInputStream
public FileInputStream(File file) throws FileNotFoundException
 o FileInputStream
public FileInputStream(FileDescriptor fd)

Methods

 o close
public void close() throws IOException
Overrides:
close in class InputStream
 o getFD
public FileDescriptor getFD() throws IOException
 o available
public int available() throws IOException
Overrides:
available in class InputStream
 o read
public int read() throws IOException
Overrides:
read in class InputStream
 o read
public int read(byte[] b,
                int off,
                int len) throws IOException
Overrides:
read in class InputStream
 o read
public int read(byte[] b) throws IOException
Overrides:
read in class InputStream
 o skip
public long skip(long n) throws IOException
Overrides:
skip in class InputStream

All Packages  Class Hierarchy  This Package  Previous  Next  Index