为什么我在JavaFX上得到java.lang.IllegalStateException“不在FX应用程序线程上”?

nukf8bse  于 2023-01-01  发布在  Java
关注(0)|答案(3)|浏览(176)

我有一个应用程序,它有一个TableView,它有一个附加的侦听器,所以它会在检测到更改时立即刷新,但问题是我得到的是java.lang.IllegalStateException: Not on FX application thread; currentThread = Smack Listener Processor (0)

/**
 * This function resets the pagination pagecount
 */
public void resetPage() {
    try {
        System.out.println("RESET"); 
        int tamRoster = this.loginManager.getRosterService().getRosterList().size();
        paginationContactos.setPageCount((int)(Math.ceil(tamRoster*1.0/limit.get())));
        int tamEnviados = this.loginManager.getRosterService().getEnviadasList().size();
        paginationEnviadas.setPageCount((int)(Math.ceil(tamEnviados*1.0/limit.get())));
        int tamRecibidas = this.loginManager.getRosterService().getRecibidasList().size();
        paginationRecibidas.setPageCount((int)(Math.ceil(tamRecibidas*1.0/limit.get())));
    } catch (Exception e) {
        e.printStackTrace();
    }
}

public void doSomething () {
        this.loginManager.getRosterService().getRosterList().addListener(new ListChangeListener<RosterDTO>() {
            @Override
            public void onChanged(
                    javafx.collections.ListChangeListener.Change<? extends RosterDTO> c) {
                // TODO Auto-generated method stub
                resetPage();
                while (c.next()) {
                    if (c.wasPermutated()) {
                        System.out.println("PERM");
                    } else if (c.wasUpdated()) {
                        System.out.println("UPD");
                    } else {
                        System.out.println("ELSE");
                    }
                }
            }
         });
}

虽然它进入了resetPage方法,但我得到了那个异常。为什么会发生这种情况?我该如何修复它?

neskvpey

neskvpey1#

用户界面不能直接从非应用程序线程更新。请改用Platform.runLater(),其逻辑位于Runnable对象内部。例如:

Platform.runLater(new Runnable() {
    @Override
    public void run() {
        // Update UI here.
    }
});

作为lambda表达式:

// Avoid throwing IllegalStateException by running from a non-JavaFX thread.
Platform.runLater(
  () -> {
    // Update UI here.
  }
);
b1zrtrql

b1zrtrql2#

JavaFX代码允许从JavaFX应用程序线程更新UI。但是从上面的异常消息来看,它没有使用FX应用程序线程。
一种可以修复的方法是从resetPage方法启动FX应用程序线程并在那里进行修改。

ijxebb2r

ijxebb2r3#

我有一个类似的问题,我修复了*没有使用Platform.runLater()
"java. lang.非法状态异常:不在FX应用程序线程上;当前线程=线程-6 "

Button play = new Button("Play");
EventHandler<ActionEvent> playHandler = e1 -> {
    Runnable runnable = () -> {

        play.setText("Pause");

        EventHandler<ActionEvent> timelineHandler e2 -> play();
        timeline = new Timeline(new KeyFrame(Duration.millis(2000), timelineHandler));
        timeline.setCycleCount(Timeline.INDEFINITE);
        timeline.play();

    };
    Thread t = new Thread(runnable);
    t.start();
};
play.setOnAction(playHandler);

已解决!将所有不相关的内容移出runnable lambda:

Button play = new Button("Play");
EventHandler<ActionEvent> playHandler = e1 -> {
    play.setText("Pause");
    Runnable runnable = () -> {

        EventHandler<ActionEvent> timelineHandler e2 -> play();
        timeline = new Timeline(new KeyFrame(Duration.millis(2000), timelineHandler));
        timeline.setCycleCount(Timeline.INDEFINITE);
        timeline.play();

    };
    Thread t = new Thread(runnable);
    t.start();
};
play.setOnAction(playHandler);

相关问题