/*
* 程序头部注释开始
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:IO操作 文件的读取
* 作 者:薛广晨
* 完成日期:2011 年 10 月 03 日
* 版 本号:x1.0
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:
* 程序输出:
* 程序头部的注释结束
*/
import java.io.*;
class FileReaderTest
{
public static void main(String[] args)
{
FileReader fr = null;
try
{
//创建一个文件读取流对象,和指定名称的文件相关联。
//要保证该文件是已经存在的,如果不存在,会发生异常FileNotFoundException
fr = new FileReader("Test.txt");
//调用读取流对象的read方法。
//read():一次读一个字符。而且会自动往下读。
int ch = 0;
while((ch = fr.read()) != -1)
{
System.out.println((char)ch + " ");
}
/*
while(true)
{
int ch = fr.read();
if(ch == -1)
break;
System.out.println("ch="+(char)ch);
}
*/
}
catch (IOException e)
{
System.out.println("catch:" + e.toString());
}
finally
{
try
{
if(fr != null)
fr.close();
}
catch (IOException e)
{
System.out.println("catch:" + e.toString());
}
}
}
}
运行结果: