作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有一个具有 TableView
的应用程序,该应用程序具有附加的监听器,因此它会在检测到更改时立即刷新,但问题是我正在获取 java.lang。 IllegalStateException:不在 FX 应用程序线程上; currentThread = Smack 监听器处理器 (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 方法,但我得到了那个异常。为什么会这样?我该如何解决?提前致谢。
最佳答案
用户界面不能直接从非应用程序线程更新。相反,使用 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.
}
);
关于java - 为什么我在 JavaFX 上收到 java.lang.IllegalStateException "Not on FX application thread"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17850191/
我是一名优秀的程序员,十分优秀!