java.lang.IllegalStateException:不在FX应用程序线程上; currentThread =线程4
我试图从一个线程设置一个文本对象的string,但它给了我这个错误:
Exception in thread "Thread-4" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4 at com.sun.javafx.tk.Toolkit.checkFxUserThread(Unknown Source) at com.sun.javafx.tk.quantum.QuantumToolkit.checkFxUserThread(Unknown Source) at javafx.scene.Scene.addToDirtyList(Unknown Source) at javafx.scene.Node.addToSceneDirtyList(Unknown Source) at javafx.scene.Node.impl_markDirty(Unknown Source) at javafx.scene.shape.Shape.impl_markDirty(Unknown Source) at javafx.scene.Node.impl_geomChanged(Unknown Source) at javafx.scene.text.Text.impl_geomChanged(Unknown Source) at javafx.scene.text.Text.needsTextLayout(Unknown Source) at javafx.scene.text.Text.needsFullTextLayout(Unknown Source) at javafx.scene.text.Text.access$200(Unknown Source) at javafx.scene.text.Text$2.invalidated(Unknown Source) at javafx.beans.property.StringPropertyBase.markInvalid(Unknown Source) at javafx.beans.property.StringPropertyBase.set(Unknown Source) at javafx.beans.property.StringPropertyBase.set(Unknown Source) at javafx.scene.text.Text.setText(Unknown Source) at uy.com.vincent.fx.handling.TableController$1.run(TableController.java:70)
处理程序类:
@FXML private Text timer; @Override public void initialize(URL url, ResourceBundle rb) { init(); new Thread() { public void run() { while(true) { Calendar cal = new GregorianCalendar(); int hour = cal.get(cal.HOUR); int minute = cal.get(cal.MINUTE); int second = cal.get(cal.SECOND); int AM_PM = cal.get(cal.AM_PM); String time = hour + "" + minute + "" + second; timer.setText(time); } } }.start(); }
我正在学习一个教程 。 教程中的人没有使用JavaFX。
我曾尝试使用Platform.runLater()
,它确实工作,但它崩溃了我的程序。 我也尝试在Platform.runLater(new Runnable() { })
方法上创build一个Timer,但是它给了我和以前一样的错误。
在Platform.runLater()
包装timer.setText()
Platform.runLater()
。 在它之外,在while循环中,添加Thread.sleep(1000);
非法状态exception背后的原因是您正在尝试更新JavaFX应用程序线程以外的某个线程上的UI。
当你添加它的时候,你的应用崩溃的原因是你通过添加一个在UI线程上无限地执行的进程来重载UI线程。 使线程睡眠1000毫秒将帮助你解决这个问题。
如果可能,用Timer或TimerTaskreplacewhile(true)。
有关更多选项,请点击此链接