为什么会出现java.lang.IllegalStateException“未对外汇的应用程序线程”

2019-05-08 17:46发布

我有有一个应用程序TableView有一个附加的侦听器,只要检测到变化刷新,但问题是,I'm越来越java.lang.IllegalStateException: Not on FX application thread; currentThread = Smack Listener Processor (0) 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");
                    }
                }
            }
         });
}

Altough它进入resetPage方法,我得到的例外。 这究竟是为什么? 我怎样才能解决这个问题? 提前致谢。

Answer 1:

用户界面不能直接从非应用程序线程更新。 相反,使用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.
  }
);


Answer 2:

JavaFX代码允许更新从JavaFX的应用程序线程的UI。 但是从上面的异常消息它说,它没有使用FX应用程序线程。

您可以修复的方法之一是启动从resetPage方法的FX应用程序线程并做修改那里。



文章来源: Why am I getting java.lang.IllegalStateException “Not on FX application thread” on JavaFX?