java.io
Class FileOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FileOutputStream

public class FileOutputStream
extends OutputStream


Constructor Summary
FileOutputStream(File var0)
           
FileOutputStream(FileDescriptor var0)
           
FileOutputStream(String var0)
           
FileOutputStream(String var0, boolean var1)
           
 
Method Summary
 void close()
           
protected  void finalize()
           
 FileDescriptor getFD()
           
 void write(byte[] var0)
           
 void write(byte[] var0, int var1, int var2)
           
 void write(int var0)
           
 
Methods inherited from class java.io.OutputStream
flush
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FileOutputStream

public FileOutputStream(File var0)
                 throws FileNotFoundException
Throws:
FileNotFoundException

FileOutputStream

public FileOutputStream(FileDescriptor var0)

FileOutputStream

public FileOutputStream(String var0)
                 throws FileNotFoundException
Throws:
FileNotFoundException

FileOutputStream

public FileOutputStream(String var0,
                        boolean var1)
                 throws FileNotFoundException
Throws:
FileNotFoundException
Method Detail

close

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

finalize

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

getFD

public final FileDescriptor getFD()
                           throws IOException
Throws:
IOException

write

public void write(byte[] var0)
           throws IOException
Overrides:
write in class OutputStream
Throws:
IOException

write

public void write(byte[] var0,
                  int var1,
                  int var2)
           throws IOException
Overrides:
write in class OutputStream
Throws:
IOException

write

public void write(int var0)
           throws IOException
Specified by:
write in class OutputStream
Throws:
IOException


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