我应该在JOptionPane.YES_NO_OPTION里面写什么

问题描述 投票:0回答:0

所以每次我关闭程序时,都会弹出一个窗口,询问我是否要关闭应用程序 但我不确定如果选择“否”,我应该在里面写什么。

现在每次我按 no 时 GUI 都会关闭。

        ex.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                // Ask for confirmation before terminating the program.
                int option = JOptionPane.showConfirmDialog(
                        ex,
                        "Are you sure you want to close the application?",
                        "Close Confirmation",
                        JOptionPane.YES_NO_OPTION,
                        JOptionPane.QUESTION_MESSAGE);
                if (option == JOptionPane.YES_OPTION) {
                    System.exit(0);
                }

            }
        });
    }

尝试插入我在网上找到的一些不同的方法和代码。

jpanel joptionpane terminate windowlistener system.exit
© www.soinside.com 2019 - 2024. All rights reserved.