item4.addActionListener(new ActionListener()
      {
          public void actionPerformed(ActionEvent Event) 
          {
         int i=JOptionPane.showConfirmDialog(null,"--是否真的需要退出系统","退出确认对话框", JOptionPane.YES_NO_CANCEL_OPTION);
         if(i==0)
         {
          f.dispose();
         }
          }
      }
      );