public class FileReader extends InputStreamReader
FileReader
是用于读取字符流。 要读取原始字节流,请考虑使用FileInputStream
。
InputStreamReader
, FileInputStream
Constructor and Description |
---|
FileReader(File file)
创建一个新的
FileReader ,给出
File读取。
|
FileReader(FileDescriptor fd)
创建一个新的
FileReader ,给定
FileDescriptor读取。
|
FileReader(String fileName)
创建一个新的
FileReader ,给定要读取的文件的名称。
|
close, getEncoding, read, read, ready
public FileReader(String fileName) throws FileNotFoundException
fileName
- 要读取的文件的名称
FileNotFoundException
- 如果命名文件不存在,是一个目录,而不是常规文件,或者由于某些其他原因无法打开读取。
public FileReader(File file) throws FileNotFoundException
file
- 要阅读的
File
FileNotFoundException
- 如果文件不存在,是一个目录而不是常规文件,或者由于某些其他原因无法打开阅读。
public FileReader(FileDescriptor fd)
fd
- 要读取的FileDescriptor
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.