JPanel sPanel=new JPanel();
okBtn=new JButton("确定");
cancelBtn=new JButton("取消");
cancelBtn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
If((Button)e.getSource()==cancelBtn){
System.exit(0);
}
}
});
------解决方案--------------------
直接exit 不就行了???为毛要判断啊
最对就是点了cancel 跳个 对话框 选yes OR no