Class java.io.FileOutputStream (1.0)
public class FileOutputStream extends OutputStream {
// Public Constructors
public FileOutputStream(String name) throws IOException;
public FileOutputStream(String name, boolean append) throws IOException;
public FileOutputStream(File file) throws IOException;
public FileOutputStream(FileDescriptor fdObj);
// Public Instance Methods
public void close( ) throws IOException; // Overrides OutputStream.close( )
public final FileDescriptor getFD( ) throws IOException;
public void write(int b) throws IOException; // Defines OutputStream.write( )
public void write(byte[ ] b) throws IOException; // Overrides OutputStream.write( )
public void write(byte[ ] b, int off, int len) throws IOException; // Overrides OutputStream.write( )
// Protected Instance Methods
protected void finalize( ) throws IOException; // Overrides Object.finalize( )
}