java.io
Class FileInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by java.io.FileInputStream

public class FileInputStream
extends InputStream


Constructor Summary
FileInputStream(File var0)
           
FileInputStream(FileDescriptor var0)
           
FileInputStream(String var0)
           
 
Method Summary
 int available()
           
 void close()
           
protected  void finalize()
           
 FileDescriptor getFD()
           
 int read()
           
 int read(byte[] var0)
           
 int read(byte[] var0, int var1, int var2)
           
 long skip(long var0)
           
 
Methods inherited from class java.io.InputStream
mark, markSupported, reset
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FileInputStream

public FileInputStream(File var0)
                throws FileNotFoundException
Throws:
FileNotFoundException

FileInputStream

public FileInputStream(FileDescriptor var0)

FileInputStream

public FileInputStream(String var0)
                throws FileNotFoundException
Throws:
FileNotFoundException
Method Detail

available

public int available()
              throws IOException
Overrides:
available in class InputStream
Throws:
IOException

close

public void close()
           throws IOException
Overrides:
close in class InputStream
Throws:
IOException

finalize

protected void finalize()
                 throws IOException
Overrides:
finalize in class Object
Throws:
IOException

getFD

public final FileDescriptor getFD()
                           throws IOException
Throws:
IOException

read

public int read()
         throws IOException
Specified by:
read in class InputStream
Throws:
IOException

read

public int read(byte[] var0)
         throws IOException
Overrides:
read in class InputStream
Throws:
IOException

read

public int read(byte[] var0,
                int var1,
                int var2)
         throws IOException
Overrides:
read in class InputStream
Throws:
IOException

skip

public long skip(long var0)
          throws IOException
Overrides:
skip in class InputStream
Throws:
IOException


Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.