我在我的CustomUIPanel类中写了这个测试代码:
public static void main(String[] args) { final JDialog dialog = CustomUIPanel.createDialog(null,CustomUIPanel.selectFile()); dialog.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { System.exit(0); } }); }
如果CustomUIPanel.main()是程序的入口点,它可以正常工作,但它让我想知道什么:如果另一个类叫CustomUIPanel.main()进行测试呢?那么我对System.exit(0)的调用是不正确的.
解决方法
您可以使用JDialog的
setDefaultCloseOperation()
方法,指定DISPOSE_ON_CLOSE:
setDefaultCloSEOperation(JDialog.DISPOSE_ON_CLOSE);
附录:结合@ camickr的帮助答案,当窗口关闭或按下关闭按钮时,此示例退出.
import java.awt.EventQueue; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.WindowEvent; import javax.swing.AbstractAction; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JLabel; /** @see https://stackoverflow.com/questions/5540354 */ public class DialogClose extends JDialog { public DialogClose() { this.setLayout(new GridLayout(0,1)); this.add(new JLabel("Dialog close test.",JLabel.CENTER)); this.add(new JButton(new AbstractAction("Close") { @Override public void actionPerformed(ActionEvent e) { DialogClose.this.setVisible(false); DialogClose.this.dispatchEvent(new WindowEvent( DialogClose.this,WindowEvent.WINDOW_CLOSING)); } })); } private void display() { this.setDefaultCloSEOperation(JDialog.DISPOSE_ON_CLOSE); this.pack(); this.setLocationRelativeTo(null); this.setVisible(true); } public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { @Override public void run() { new DialogClose().display(); } }); } }