All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.io.FileWriter Maven / Gradle / Ivy

The newest version!
package java.io;

public class FileWriter extends OutputStreamWriter {
	/**
	 * @throws IOException
	 */
    public FileWriter(String fileName) throws IOException {super(null);}
    
    /**
     * @throws IOException
     */
    public FileWriter(String fileName, boolean append) throws IOException {super(null);}

    /**
     * @throws IOException
     */
    public FileWriter(File file) throws IOException {super(null);}

    /**
     * @throws IOException
     */
    public FileWriter(File file, boolean append) throws IOException {super(null);}
    public FileWriter(FileDescriptor fd) {super(null);}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy