java.lang.IllegalStateException:不在FX应用程序线程上; currentThread = Thread-4

时间:2015-04-04 17:21:12

标签: java multithreading javafx

我试图从线程中设置Text对象的字符串,但是它给了我这个错误:

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();
}

我跟随a tutorial。 本教程中的人没有使用JavaFX。

我尝试过使用Platform.runLater(),它确实有效,但崩溃了我的程序。 我也尝试在Platform.runLater(new Runnable() { })方法上创建一个Timer,但它给我的错误与以前一样。

1 个答案:

答案 0 :(得分:18)

timer.setText()中换行Platform.runLater()。在它之外,在while循环内,添加Thread.sleep(1000);

非法状态异常背后的原因是您尝试在JavaFX应用程序线程以外的某些线程上更新UI。

当您添加它时,您的应用程序崩溃的原因是您通过添加要在UI线程上无限执行的进程来重载UI线程。让线程休眠1000毫秒将帮助您克服这个问题。

如果可能,使用Timer或TimerTask替换while(true)。

如需更多选项,请点击this link