为什么我在javafx上得到java.lang.illegalstateexception“not on fx application thread”?

h7appiyu  于 2021-06-21  发布在  Mysql
关注(0)|答案(3)|浏览(603)

我有一个应用程序 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方法,我还是得到了这个异常。为什么会这样?我该怎么修?提前谢谢。

zzlelutf

zzlelutf1#

无法从非应用程序线程直接更新用户界面。相反,使用 Platform.runLater() ,逻辑在可运行对象中。例如:

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.
  }
);
am46iovg

am46iovg2#

我有一个类似的问题,我没有使用 Platform.runLater() :
“java.lang.illegalstateexception:不在fx应用程序线程上;currentthread=螺纹-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 λ:

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);
rjjhvcjd

rjjhvcjd3#

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

相关问题