public class Demo1 {
public static void main(String[] args) throws IOException {
FileReader fr= new FileReader("Demo1.txt");
int ch=fr.read();
System.out.println((char)ch);
int ch1=fr.read();
System.out.println((char)ch1);
int ch2=fr.read();
System.out.println((char)ch2);
//fr.close(); 流到底要不要关闭,我测试了一下,我不关闭他也可以运行,为什么还要关闭. |