0N/A/*
2362N/A * Copyright (c) 1996, 2001, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage java.io;
0N/A
0N/A
0N/A/**
0N/A * Convenience class for reading character files. The constructors of this
0N/A * class assume that the default character encoding and the default byte-buffer
0N/A * size are appropriate. To specify these values yourself, construct an
0N/A * InputStreamReader on a FileInputStream.
0N/A *
0N/A * <p><code>FileReader</code> is meant for reading streams of characters.
0N/A * For reading streams of raw bytes, consider using a
0N/A * <code>FileInputStream</code>.
0N/A *
0N/A * @see InputStreamReader
0N/A * @see FileInputStream
0N/A *
0N/A * @author Mark Reinhold
0N/A * @since JDK1.1
0N/A */
0N/Apublic class FileReader extends InputStreamReader {
0N/A
0N/A /**
0N/A * Creates a new <tt>FileReader</tt>, given the name of the
0N/A * file to read from.
0N/A *
0N/A * @param fileName the name of the file to read from
0N/A * @exception FileNotFoundException if the named file does not exist,
0N/A * is a directory rather than a regular file,
0N/A * or for some other reason cannot be opened for
0N/A * reading.
0N/A */
0N/A public FileReader(String fileName) throws FileNotFoundException {
0N/A super(new FileInputStream(fileName));
0N/A }
0N/A
0N/A /**
0N/A * Creates a new <tt>FileReader</tt>, given the <tt>File</tt>
0N/A * to read from.
0N/A *
0N/A * @param file the <tt>File</tt> to read from
0N/A * @exception FileNotFoundException if the file does not exist,
0N/A * is a directory rather than a regular file,
0N/A * or for some other reason cannot be opened for
0N/A * reading.
0N/A */
0N/A public FileReader(File file) throws FileNotFoundException {
0N/A super(new FileInputStream(file));
0N/A }
0N/A
0N/A /**
0N/A * Creates a new <tt>FileReader</tt>, given the
0N/A * <tt>FileDescriptor</tt> to read from.
0N/A *
0N/A * @param fd the FileDescriptor to read from
0N/A */
0N/A public FileReader(FileDescriptor fd) {
0N/A super(new FileInputStream(fd));
0N/A }
0N/A
0N/A}