您是否可以创建Java Swing JDialog
框(或替代Swing对象类型),我可以使用它来提醒用户某个事件,然后在延迟后自动关闭对话框; 没有用户必须关闭对话框?
答案 0 :(得分:14)
此解决方案基于oxbow_lakes',但它使用javax.swing.Timer,适用于此类事物。它总是在事件派发线程上执行其代码。这对于避免微妙但令人讨厌的错误非常重要
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Test {
public static void main(String[] args) {
JFrame f = new JFrame();
final JDialog dialog = new JDialog(f, "Test", true);
Timer timer = new Timer(2000, new ActionListener() {
public void actionPerformed(ActionEvent e) {
dialog.setVisible(false);
dialog.dispose();
}
});
timer.setRepeats(false);
timer.start();
dialog.setVisible(true); // if modal, application will pause here
System.out.println("Dialog closed");
}
}
答案 1 :(得分:7)
是的 - 当然可以。你有没有试过安排结束?
JFrame f = new JFrame();
final JDialog dialog = new JDialog(f, "Test", true);
//Must schedule the close before the dialog becomes visible
ScheduledExecutorService s = Executors.newSingleThreadScheduledExecutor();
s.schedule(new Runnable() {
public void run() {
dialog.setVisible(false); //should be invoked on the EDT
dialog.dispose();
}
}, 20, TimeUnit.SECONDS);
dialog.setVisible(true); // if modal, application will pause here
System.out.println("Dialog closed");
上述程序将在20秒后关闭对话框,您将看到文本“Dialog closed”打印到控制台
答案 2 :(得分:3)
我会使用Swing Timer。当Timer触发时,代码将自动在Event Dispatch Thread中执行,GUI的所有更新都应该在EDT中完成。
阅读How to Use Timers上的Swing教程中的部分。