gpt4 book ai didi

Java Swing 线程改变 UI - 并发症

转载 作者:搜寻专家 更新时间:2023-11-01 03:56:50 28 4
gpt4 key购买 nike

我试了好几个小时。我有一个线程更改了我的 UI 的 JTextField,这完全破坏了 UI。线程(我们称之为线程 A)由 ActionListener 生成。 .setText() 函数调用在线程 A 创建的额外线程 (B) 中。线程 B 是 SwingUtilitis.invokeAll() 和/或 SwingUtilities.invokeAndWait() 的参数。我都试过了。这里有一些代码可以使它更清楚。

这是我创建线程 A 的 ActionListener - 当然缩短了:

public void actionPerformed(ActionEvent evt) {
Object source = evt.getSource();
if (source == window.getBtn_Search()) {
Refresher refresh = new Refresher();
refresh.start();
}
}

这是我的线程 A,稍后将线程 B 放入 EDT 队列:

public class Refresher extends Thread implements Runnable {

private int counter = 0;
private UI window = null;
private int defRefresh = 0;

@Override
public void run() {
while(true){
-bazillion lines of code-
do {
try {
Refresher.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
if(window.canceled()) break;
UI.updateCounter(window.getLbl_Status(), (Configuration.getRefreshTime()-counter));
counter++;
} while (counter <= Configuration.getRefreshTime());
- more code-
}
}
}

UI.updateCounter(...) 会将线程 B 加入 EDT。

public static void updateCounter(final JLabel label, final int i) {
try {
SwingUtilities.invokeAndWait(
new Runnable() {
public void run() {
label.setText("Refreshing in: " + i + " seconds.");
}
}
);
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

现在,当最后一个函数被调用时,一切都变得一团糟。我尝试了几个小时不同的东西,但没有任何效果。我也尝试过使用 SwingWorker,但有些或根本没有发生。

最佳答案

invokeAndWait() 尝试允许发布要在 EDT 上执行的 Runnable 任务,但它会阻塞当前线程并等待 EDT 执行完任务。

但是在 invokeAndWait() 中存在死锁的可能性,因为在任何创建线程相互依赖性的代码中都存在这种情况。如果调用代码持有代码调用的某些锁(显式或隐式)通过 invokeAndWait() 要求,那么 EDT 代码将等待非用于释放锁的 EDT 代码,这不会发生,因为非 EDT 代码正在等待 EDT 代码完成,应用程序将挂起。

正如我们在这里看到的,修改等待非传递的 JLabel 组件美国东部时间代码。

我们可以使用

invokeLater() 需要负责创建和排队包含 Runnable 的特殊事件。该事件按照接收到的顺序在 EDT 上进行处理,就像任何其他事件一样。时间到了,它会通过运行 Runnable 的 run() 方法来分派(dispatch)。

SwingUtilities.invokeLater(new Runnable() {
public void run() {
label.setText("Refreshing in: " + i + " seconds.");
}
});

isEventDispatchThread() 如果当前正在 EDT 上执行调用代码,则返回 true,否则返回 false。

Runnable code= new Runnable() {
public void run() {
label.setText("Refreshing in: " + i + " seconds.");
}
}
);

if (SwingUtilities.isEventDispatchThread()) {
code.run();
} else {
SwingUtilities.invokeLater(code);
}

关于Java Swing 线程改变 UI - 并发症,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14008260/

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