5

我有一个 Java 程序,其中包含一个继承自 JFrame的类Application 。

我想显示一条消息,询问用户是否要在单击窗口右上角的 X 按钮后退出程序。

到目前为止,这是我的代码:

我从网上找到的教程中获得了此代码。我自己编写了 WindowClosing 事件处理程序。但是,我无法注册窗口侦听器 (addWindowListener)。它告诉我 WindowAdapter 是抽象的,无法实例化。

请问我该如何解决这个问题?

4

3 回答 3

17

基本上,你得到的几乎是正确的。有一些东西没有正确组合在一起,还有一个错字。

首先删除你的WindowClosing方法(它是window,不是Window)然后用addWindowListener(new WindowAdapter());下面的代码替换你的

addWindowListener(new WindowAdapter() {
  public void windowClosing(WindowEvent e) {
    int confirmed = JOptionPane.showConfirmDialog(null, 
        "Are you sure you want to exit the program?", "Exit Program Message Box",
        JOptionPane.YES_NO_OPTION);

    if (confirmed == JOptionPane.YES_OPTION) {
      dispose();
    }
  }
});
于 2012-11-16T15:54:01.857 回答
2

我在两分钟内得到了这个编码......

首先是在Exit_on_close中设置j帧默认关闭事件。其次创建一个名为“Window Closing Event Handler”的类,然后在init阶段调用它。

private void WindowClosingEventHandler(){ addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { int confirmed = JOptionPane.showConfirmDialog(null, "Are you sure you want to exit this application?", "Exit Program Message Box",JOptionPane.YES_NO_OPTION);

    if (confirmed == JOptionPane.YES_OPTION) {
        try{
            String login=txtuserid.getText();
            Connection conn = (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/repair", "root", "");
            Statement st = conn.createStatement();
            String update = "UPDATE user set User_Status=0 where UserID='"+ login +"'";
            st.executeUpdate(update);  
            dispose();
            Login2 dialog = new Login2(new javax.swing.JFrame(), true);
            dialog.setVisible(true);
        }catch(SQLException | HeadlessException q){
            JOptionPane.showMessageDialog(null, q);
        }
        System.exit(0);
    }
    else{
        setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
    }
}
});
}
于 2013-07-02T06:10:39.973 回答
0

好的再试一次。

您不能创建新的 WindowAdapter,因为 WindowAdapter 是抽象的。抽象类不能被实例化。您需要创建 WindowAdapter 的子类并将其抽象方法实现为公共的。

http://docs.oracle.com/javase/7/docs/api/java/awt/event/WindowAdapter.html

于 2012-11-16T19:35:52.873 回答