Class | Tree | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Class java.io.FileReader

java.lang.Object
  |
  +--java.io.Reader
        |
        +--java.io.InputStreamReader
              |
              +--java.io.FileReader

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.

Since:
JDK1.1
Version:
1.6, 98/03/18
See Also:
InputStreamReader, FileInputStream

Fields inherited from class java.io.InputStreamReader
bb, btc, defaultByteBufferSize, in, nBytes, nextByte
 
Fields inherited from class java.io.Reader
lock, maxSkipBufferSize, skipBuffer
 
Constructor Summary
FileReader(java.lang.String fileName)
           
FileReader(File file)
           
FileReader(java.io.FileDescriptor fd)
           
 
Methods inherited from class java.io.InputStreamReader
close, convertInto, ensureOpen, fill, flushInto, getEncoding, inReady, malfunction, read, read, ready
 
Methods inherited from class java.io.Reader
close, mark, markSupported, read, read, read, ready, reset, skip
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notifyAll, notify, registerNatives, toString, wait, wait, wait
 

Constructor Detail

FileReader

public FileReader(java.lang.String fileName)
           throws FileNotFoundException

FileReader

public FileReader(File file)
           throws FileNotFoundException

FileReader

public FileReader(java.io.FileDescriptor fd)

Class | Tree | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD