本帖最后由 王康 于 2012-2-27 11:11 编辑
打开JDK API
java.io
-----FileReader
------------read
read
public int read()
throws IOException读取单个字符。
覆盖:
类 Reader 中的 read
返回:
读取的字符,如果已到达流的末尾,则返回 -1 (这句很重要,通常都是读取到流的末尾,程序返回-1,这是一个标志.底层读取流返回的都是int型数据)
抛出: IOException - 如果发生 I/O 错误 |
|