如何在不使用默认方法的情况下关闭JFrame?

时间:2014-04-15 12:12:41

标签: java swing jframe

我正在使用NetBeans IDE创建一个框架,默认情况下框架已关闭。我将默认行为(例如EXIT_ON_CLOSE)修改为DO_NOTHING_ON_CLOSE。我想手动关闭。

如何在不使用默认方法的情况下关闭JFrame

这是我的代码:

public class FrameClose extends javax.swing.JFrame {
    public FrameClose() {

      initComponents();
    }


    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 400, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 300, Short.MAX_VALUE)
        );

        pack();
    }// </editor-fold>                        


    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new FrameClose().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify                     
    // End of variables declaration                   
}

2 个答案:

答案 0 :(得分:0)

你可以在frame对象上使用dispose()方法, 例如:

JFrame frame  = new JFrame();
frame.dispose();

答案 1 :(得分:0)

您可以尝试使用WindowListener

addWindowListener(new WindowListener() {
        @Override
        public void windowActivated(WindowEvent arg0) { }
        @Override
        public void windowClosed(WindowEvent arg0) { }
        @Override
        public void windowClosing(WindowEvent arg0) { }
        @Override
        public void windowDeactivated(WindowEvent arg0) { }
        @Override
        public void windowDeiconified(WindowEvent arg0) { }
        @Override
        public void windowIconified(WindowEvent arg0) { }
        @Override
        public void windowOpened(WindowEvent arg0) { }
});

使用此代替调用setDefaultCloseOperation(),然后只使用哪种方法最适合您想要做的事情。

或者,如果您想在代码中关闭框架,请使用setVisible(false);隐藏框架或使用dispose()摆脱整个框架