检测Java应用程序何时关闭

时间:2011-04-20 14:22:48

标签: java events resources formclosing

我正在尝试检测Java应用程序即将关闭的时间,以便我可以执行释放资源的方法,我在C#中完成了如下操作:

//Intercept when the application closes
        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            //Reclaim resources from MIDI usage
            if (MIDIControl.CleanUp())
            {
                Logger.Add("Closed resources successfully on Form Close \n");
            }
            else
            {
                Logger.Add("Failed to close all resources on Form Close.");
            }
        }

我尝试在Java版本中执行相同的技术但它似乎不起作用,我已经尝试过调试,并且它不会挂在方法名称上的断点上:

//Intercept when the application closes
        public void windowClosing(WindowEvent we)
        {
            //Reclaim resources from MIDI usage
            if(_midiInstance.CleanUp())
            {
                Logger.Add("Closed resources successfully on ShutDown");
            }
            else
            {
                Logger.Add("Failed to close all resources on ShutDown");
            }
            System.exit(0);
        }

我在等待错误的事件吗?我将如何以与C#版本相同的方式执行适当的方法。

感谢您的时间。

1 个答案:

答案 0 :(得分:12)

您是否已通过windowClosing()注册了包含addWindowListener()方法的课程?

除了使用窗口确定应用程序状态不是一个好的风格。 Java明确允许您挂钩关闭进程:

Runtime.getRuntime().addShutdownHook(new Thread() {

    @Override
    public void run() {
        // place your code here
    }

});