java.io
Class FileReader
- java.lang.Object
-
- java.io.Reader
-
- java.io.InputStreamReader
-
- java.io.FileReader
-
- All Implemented Interfaces:
- Closeable, AutoCloseable, Readable
public class FileReader extends InputStreamReader
Convenience class for reading character files. The constructors of this class assume that the default character encoding and the default byte-buffer size are appropriate. To specify these values yourself, construct an InputStreamReader on a FileInputStream.FileReader
is meant for reading streams of characters. For reading streams of raw bytes, consider using aFileInputStream
.- Since:
- JDK1.1
- See Also:
InputStreamReader
,FileInputStream
-
-
Constructor Summary
Constructors Constructor and Description FileReader(File file)
Creates a new FileReader, given the File to read from.FileReader(FileDescriptor fd)
Creates a new FileReader, given the FileDescriptor to read from.FileReader(String fileName)
Creates a new FileReader, given the name of the file to read from.
-
Method Summary
-
Methods inherited from class java.io.InputStreamReader
close, getEncoding, read, read, ready
-
-
'Dev. 자바 > API 및 이론' 카테고리의 다른 글
[JAVA API] java.util.HashSet<E> (0) | 2012.09.01 |
---|---|
[JAVA API] java.io.FileWriter (0) | 2012.08.08 |
[JAVA API] java.io.FileOutputStream (0) | 2012.08.08 |
[JAVA API] java.io.FileInputStream (0) | 2012.08.08 |
[JAVA API] java.io.File (1) | 2012.08.08 |