Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class FileOutputStream extends OutputStream {
   // Public Constructors
      public FileOutputStream(String name) throws IOException;
1.1  public FileOutputStream(String name, boolean append) throws IOException;
      public FileOutputStream(File file) throws IOException;
      public FileOutputStream(FileDescriptor fdObj);
   // Public Instance Methods
      public native void close() throws IOException;  // Overrides OutputStream.close()
      public final FileDescriptor getFD() throws IOException;
      public native 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()
}