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

java.io.FileReader Maven / Gradle / Ivy

The newest version!
package java.io;

public class FileReader extends InputStreamReader {
	/**
	 * @throws FileNotFoundException
	 */
    public FileReader(String fileName) throws FileNotFoundException {super(null);}

    /**
     * @throws FileNotFoundException
     */
    public FileReader(File file) throws FileNotFoundException {super(null);}
    public FileReader(FileDescriptor fd) {super(null);}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy