All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.jos.java.io.FileOutputStream

java.lang.Object
    |
    +----org.jos.java.io.OutputStream
            |
            +----org.jos.java.io.FileOutputStream

public class FileOutputStream
extends OutputStream
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 FileOutputStream(File)
 o FileOutputStream(FileDescriptor)
 o FileOutputStream(String)

Method Index

 o close()
 o getFD()
 o write(byte[])
 o write(byte[], int, int)
 o write(int)

Constructors

 o FileOutputStream
public FileOutputStream(String name) throws IOException
 o FileOutputStream
public FileOutputStream(File file) throws IOException
 o FileOutputStream
public FileOutputStream(FileDescriptor fd)

Methods

 o close
public void close() throws IOException
Overrides:
close in class OutputStream
 o getFD
public FileDescriptor getFD() throws IOException
 o write
public void write(byte[] b,
                  int off,
                  int len) throws IOException
Overrides:
write in class OutputStream
 o write
public void write(byte[] b) throws IOException
Overrides:
write in class OutputStream
 o write
public void write(int b) throws IOException
Overrides:
write in class OutputStream

All Packages  Class Hierarchy  This Package  Previous  Next  Index