本帖最后由 仲伟 于 2013-5-13 12:55 编辑
public class MyFile implements Runnable{
public void run(){
while (true){
try{
FileReader fr=new FileReader(new File("a.txt")) ;
String line=fr.readLine();
System.out.println(line);
}catch(IOException err) {
}
Sleep(1000);
}
}
有很多错误你找几个
这是答案:
1.fr.readLine()没有这个方法 2.Sleep(1000)需要用Thread.sleep(1000); 3.没有关闭FileReader 4.死循环,没有退出的可能 |