构造方法 :
成员方法 :
public class ReaderDemo1 {
public static void main(String[] args) throws IOException {
// 创建字符输入流对象
FileReader fr = new FileReader("user.txt");
//一次读一个字符数据
int ch;
while ((ch=fr.read())!=-1){
System.out.println((char)ch);
}
//释放资源
fr.close();
}
}
public class ReaderDemo2 {
public static void main(String[] args) throws IOException {
// 创建字符输入流对象
FileReader fr = new FileReader("user.txt");
//一次读一个字符数据
int len;
char[] chs = new char[1024];
while ((len=fr.read(chs))!=-1){
System.out.println(new String(chs, 0, len));
}
//释放资源
fr.close();
}
}