import java.io.FileReader;

 public class FileReaderDemo {
public static void main(String[] args) throws Exception{
method_1();
method_2();
}
// 方法一:单个字符读取
public static void method_1() throws Exception{
// 1,创建读取字符数据的流对象
// 用Reader中的read读取字符。
FileReader fr = new FileReader("F://1.txt");
int ch = 0;
//遍历打印结果
while((ch = fr.read()) != -1) {
System.out.print((char) ch);
}
//关闭流
fr.close();
}
// 方法二:使用read(char[])读取文本文件数据
public static void method_2() throws Exception{
FileReader fr = new FileReader("F://1.txt");
char buf[] = new char[1024];
int len = 0;
//遍历打印结果
while((len = fr.read(buf)) != -1) {
System.out.println(new String(buf, 0, len));
}
//关闭流
fr.close();
}
}
05-11 22:12