FileOutputStream.java :  » Testing » KeY » java » io » Java Open Source

Java Open Source » Testing » KeY 
KeY » java » io » FileOutputStream.java



package java.io;

import java.nio.channels.FileChannel;
import gnu.java.nio.channels.FileChannelImpl;
public class FileOutputStream extends OutputStream {
    public FileOutputStream(String path, boolean append) throws SecurityException, FileNotFoundException {}
    public FileOutputStream(String path) throws SecurityException, FileNotFoundException {}
    public FileOutputStream(File file) throws SecurityException, FileNotFoundException {}
    public FileOutputStream(File file, boolean append) throws FileNotFoundException {}
    public FileOutputStream(FileDescriptor fdObj) throws SecurityException {}

    FileOutputStream(FileChannelImpl ch) {}

    protected void finalize() throws IOException {}
    public final FileDescriptor getFD() throws IOException {}
    public void write(int b) throws IOException {}
    public void write(byte[] buf)
     throws IOException {}
    public void write(byte[] buf, int offset, int len)
     throws IOException {}
    public void close() throws IOException {}
    public synchronized FileChannel getChannel() {}
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.