点其他则主窗口消失并未推出程序为什么????
是因为这段代码:      
if(JOptionPane.showConfirmDialog(this,"确实要退出吗?" ,"退",JOptionPane.YES_NO_CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE)==JOptionPane.YES_OPTION)      
                             System.exit(0);  
只有if()为true时才执行System.exit(0);
你可以在System.exit(0); 之前加个分号,结果就都退出了