我正在创建一个显示 gui 并读取文本文件的应用程序。当文本文件的内容发生变化时,它将执行对gui的更改。但是我需要 gui 不断阅读和检查文本文件中的更改。我已经尝试过thread.sleep(),它只接受控制,除了循环之外没有代码可以工作。环顾四周之后,我找到了摆动计时器的参考,并在不是 EDT 的新线程中运行。这些东西在我身上丢失了,我找不到实现它的方法。任何帮助将不胜感激。
public void run() {
initComponents();
while(true){System.out.println("ok");
try {
try {
File myFile = new File("C:\\Users\\kyleg\\OneDrive\\Documents\\123.txt");
System.out.println("Attempting to read from file in: "+myFile.getCanonicalPath());
Scanner input = new Scanner(myFile);
String in = "";
in = input.nextLine();
System.out.println(in);
switch(in){
case("1"):
break;
case("2"):
break;
case("3"):
break;
}
} catch (IOException ex) {
Logger.getLogger(main.class.getName()).log(Level.SEVERE, null, ex);
}
Thread.sleep(1000);
} catch (InterruptedException ex) {
Logger.getLogger(main.class.getName()).log(Level.SEVERE, null, ex);
}
} }
答案 0 :(得分:0)
这只是一个简单的文件监控代码,希望它可以帮到你。
File f = new File("Path_to_the_file");
new Thread(new Runnable() {
@Override
public void run() {
long l = f.lastModified();
String s = "";
while (true) {
if (f.lastModified() == l) {
System.out.print();
} else {
try {
Scanner sc = new Scanner(f);
s = "";
while (sc.hasNext()) {
s += sc.nextLine();
s += "\n";
jTextArea1.setText(s);
}
System.out.println(false);
l = f.lastModified();
sc.close();
} catch (FileNotFoundException ex) {
System.out.println(ex);
}
}
}
}
}).start();