Java - 关闭 JFrame 窗口时的消息 [英] Java - Message when closing JFrame Window

查看:37
本文介绍了Java - 关闭 JFrame 窗口时的消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have a Java Program containing a class Application inheriting from JFrame.

I want to display a message which asks the user if he wants to exit the program upon clicking the X button at the top right of the window.

This is my code so far:

I got this code from a tutorial I found online. I coded the WindowClosing event handler myself. However, I have trouble registering the window listener (addWindowListener). It is telling me that WindowAdapter is abstract and cannot be instantiated.

How can I solve this problem please?

解决方案

Basically, you got it almost correct. There are a few things not put together correctly and a typo.

First remove your WindowClosing method (it's window, not Window) Then replace your addWindowListener(new WindowAdapter()); with the code below

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();
    }
  }
});

这篇关于Java - 关闭 JFrame 窗口时的消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆