本帖最后由 wyl530274554 于 2012-6-22 08:28 编辑
G:\\Code\\Hello.txt 文件里有一句话"Hello the Java."
用下在的代码打印了这句话后,还在不停的打印??????????????????????
请问为什么?- import java.io.*;
- class FileReaderDemo {
- public static void main(String[] args) throws IOException {
- FileReader fr = new FileReader("G:\\Code\\Hello.txt");
- char ch = 0;
- while((ch=(char)fr.read()) != -1) {
- System.out.print(ch);
- }
- }
- }
复制代码 |