本帖最后由 燕国庆 于 2012-11-24 15:16 编辑
import java.io.*;
class FileReaderDemo1
{
public static void main(String[] args)
{
FileReader fr=null;
try
{
fr=new FileReader("Demo1.txt");
int ch=0;
while((ch=fr.read())!=-1)
System.out.println("ch="+(char)ch); //为什么而输出时会是图片的那样的结果那
}
catch (IOException e)
{
System.out.println(e.toString());
}
finally
{
try
{
if (fr!=null)
{
fr.close();
}
}
catch (IOException e)
{
System.out.println(e.toString());
}
}
}
}
Demo1.txt:
ha //此行有一个回车键
ab
|
|