我试图分离一些代码,以便可以为不同项目使用可重用的类。我现在拥有的类称为MainFrame,它现在所要做的就是创建一个包含一个JMenuBar的JMenuBar窗口。该菜单具有一项JMenuItem Exit。

我正在尝试从菜单栏中获取WindowListener类,以便在关闭应用程序时能够执行dispose()和System.gc()。

有人告诉我,这是退出应用程序的一种更干净的方法,然后退出System.exit(0);。

public class MainFrame extends JFrame {

    private MenuBar menuBar;

    public MainFrame() {

        super("Sales");

        menuBar = new MenuBar();
        setLayout(new BorderLayout());
        setJMenuBar(createMenuBar());

        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                System.out.println("test");
                dispose();
                System.gc();
            }
        });

        setMinimumSize(new Dimension(500, 400));
        setSize(600, 500);
        setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
        setLocationRelativeTo(null);
        setVisible(true);
    }

    private JMenuBar createMenuBar() {
        JMenuBar menuBar = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        JMenuItem exitItem = new JMenuItem("Exit");

        fileMenu.add(exitItem);

        menuBar.add(fileMenu);

        exitItem.setMnemonic(KeyEvent.VK_X);
        exitItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, ActionEvent.CTRL_MASK));

        exitItem.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                WindowListener[] listeners = getWindowListeners();

                for(WindowListener listener: listeners) {
                    listener.windowClosing(new WindowEvent(MainFrame.this, 0));
                }
            }
        });

        return menuBar;
    }
}


这是我要创建的两个类。

public class MainFrame extends JFrame {

private MenuBar menuBar;

public MainFrame() {

    super("Sales");

    menuBar = new MenuBar();

    setLayout(new BorderLayout());

    setJMenuBar(menuBar.getMenuBar());

    addWindowListener(new WindowAdapter() {
        public void windowClosing(WindowEvent e) {
            System.out.println("test");
            dispose();
            System.gc();
        }
    });

    setMinimumSize(new Dimension(500, 400));
    setSize(600, 500);
    setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    setLocationRelativeTo(null);
    setVisible(true);
}

}




public class MenuBar extends JMenuBar {

private JMenuBar menuBar;
private JMenu fileMenu, settingsMenu, helpMenu;

public MenuBar() {

    menuBar = new JMenuBar();

    setFileMenu();

    menuBar.add(fileMenu);
}


//// Method to return the menu bar
public JMenuBar getMenuBar() {

    return menuBar;
}


//// Private methods to set up the menu bar
private void setFileMenu() {
    fileMenu = new JMenu("File");

    JMenuItem exitItem = new JMenuItem("Exit");



    exitItem.setMnemonic(KeyEvent.VK_X);
    exitItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, ActionEvent.CTRL_MASK));
    fileMenu.add(exitItem);

    exitItem.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            WindowListener[] listeners = getWindowListeners();

            for(WindowListener listener: listeners) {
                listener.windowClosing(new WindowEvent(MainFrame.this, 0));
            }
        }
    });


}


关于如何使MenuListener类中的WindowListener工作的任何建议?

最佳答案

listener.windowClosing(new WindowEvent(MainFrame.this, 0));


如果要生成事件,则需要使用Component类的dispatchEvent(...)方法。因此,您最终会将事件调度到窗口。

基本代码是:

Window window = KeyboardFocusManager.getCurrentKeyboardFocusManager().getActiveWindow();

if (window != null)
{
    WindowEvent windowClosing = new WindowEvent(window, WindowEvent.WINDOW_CLOSING);
    window.dispatchEvent(windowClosing);
}


另外,您可以摆脱WindowListener,然后将默认关闭操作更改为:

setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);


该窗口将被丢弃,如果它是最后打开的窗口,则JVM也将退出。

08-29 00:22