关闭程序时运行方法? [英] Running a method when closing the program?

查看:58
本文介绍了关闭程序时运行方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要执行一种方法(一种创建文件的方法),当我退出程序时,该怎么做?

I need to execute a method, (a method which creates a file), when I exit my program, how would I do this?

推荐答案

添加关闭挂钩.参见 javadoc .

示例:

public static void main(String[] args) {
    Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
        public void run() {
            System.out.println("In shutdown hook");
        }
    }, "Shutdown-thread"));
}

这篇关于关闭程序时运行方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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