gpt4 book ai didi

java - 使用任务更新javafx UI而不使用Platform.RunLater

转载 作者:行者123 更新时间:2023-12-02 12:46:14 29 4
gpt4 key购买 nike

我想更新我的 javafx UI,但我不想使用 Platform.RunLater,但是当我想更新我的 Pane 时:

Pane.getChildren().add(listview);

我得到 java.lang.illegalStateException :不在 java fx 应用程序线程上;当前线程

最佳答案

您必须使用 Platform.runLater() 更新 UI 线程上的 UI 元素。

如果您有一个长时间运行的任务,请先执行该任务,然后使用该任务的结果更新 UI。

Object taskResult = GetLongRunningTaskResult();
Platform.runLater(() -> Pane.getChildren().add(taskResult));

关于java - 使用任务更新javafx UI而不使用Platform.RunLater,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44766366/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com