gpt4 book ai didi

java - 显示 jdialog 后 JTextArea 不更新

转载 作者:行者123 更新时间:2023-12-01 07:11:47 24 4
gpt4 key购买 nike

我试图在显示 JDialog 后更新 jtextarea,但它没有更新,任何人都可以帮助我。

public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setBounds(0, 0, 500, 500);
frame.setVisible(true);
JDialog dialog = new JDialog(frame);
dialog.setModal(true);
JPanel panel = new JPanel();
dialog.add(panel);
final JTextArea area = new JTextArea();
panel.add(area);
dialog.setBounds(100, 100, 200, 200);
area.setLineWrap(true);
area.setText("bbbbbbbbbbbb");
dialog.setVisible(true);
area.setText("zzzz");
}

最佳答案

dialog.setVisible 的调用被阻塞。这意味着语句 area.setText("zzzz") 在对话框关闭之后才会执行。

这就是模式对话框的本质

更新

为了能够像这样更新 UI,你需要有点偷偷摸摸......

public class TestDialog {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException ex) {
} catch (InstantiationException ex) {
} catch (IllegalAccessException ex) {
} catch (UnsupportedLookAndFeelException ex) {
}

JFrame frame = new JFrame();
frame.setBounds(0, 0, 500, 500);
frame.setVisible(true);

JDialog dialog = new JDialog(frame);
dialog.setModal(true);
JPanel panel = new JPanel();
dialog.add(panel);
final JTextArea area = new JTextArea();
panel.add(area);
dialog.setBounds(100, 100, 200, 200);
area.setLineWrap(true);
area.setText("bbbbbbbbbbbb");

new Thread(new Runnable() {
@Override
public void run() {
SwingUtilities.invokeLater(new Runnable() {

@Override
public void run() {
System.out.println("Hello");
area.setText("zzzz");
}
});
}
}).start();

dialog.setVisible(true);
}
});
}
}

关于java - 显示 jdialog 后 JTextArea 不更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12835730/

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