7

我正在做一个项目,我想以编程方式关闭通用 JOptionPane (通过不物理单击任何按钮)。当计时器到期时,我想关闭任何可能打开的 JOptionPane 并将用户踢回我的程序的登录屏幕。我可以很好地将用户踢回来,但 JOptionPane 仍然存在,除非我实际单击它上面的按钮。

我看过很多网站都没有这样的运气。在 JOptionPane 的“Red X”上调用 doClick() 方法似乎是不可能的,并且使用 JOptionpane.getRootFrame().dispose() 不起作用。

4

2 回答 2

17

从技术上讲,您可以遍历应用程序的所有窗口,检查它们是否属于 JDialog 类型并且有一个 JOptionPane 类型的子项,如果是,则处理对话框:

Action showOptionPane = new AbstractAction("show me pane!") {

    @Override
    public void actionPerformed(ActionEvent e) {
        createCloseTimer(3).start();
        JOptionPane.showMessageDialog((Component) e.getSource(), "nothing to do!");
    }

    private Timer createCloseTimer(int seconds) {
        ActionListener close = new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                Window[] windows = Window.getWindows();
                for (Window window : windows) {
                    if (window instanceof JDialog) {
                        JDialog dialog = (JDialog) window;
                        if (dialog.getContentPane().getComponentCount() == 1
                            && dialog.getContentPane().getComponent(0) instanceof JOptionPane){
                            dialog.dispose();
                        }
                    }
                }

            }

        };
        Timer t = new Timer(seconds * 1000, close);
        t.setRepeats(false);
        return t;
    }
};
于 2013-08-07T15:25:45.757 回答
1

从https://amp.reddit.com/r/javahelp/comments/36dv3t/how_to_close_this_joptionpane_using_code/获得的这段代码 对我来说似乎是最好的方法。它涉及实例化 JOptionPane 类,而不是使用静态辅助方法来为您完成。好处是您有一个 JOptionPane 对象,您可以在想要关闭对话框时释放该对象。

JOptionPane jop = new JOptionPane();
jop.setMessageType(JOptionPane.PLAIN_MESSAGE);
jop.setMessage("Hello World");
JDialog dialog = jop.createDialog(null, "Message");

// Set a 2 second timer
new Thread(new Runnable() {
    @Override
    public void run() {
        try {
            Thread.sleep(2000);
        } catch (Exception e) {
        }
        dialog.dispose();
    }

}).start();

dialog.setVisible(true);
于 2018-05-29T22:46:15.440 回答