当JVM正常或突然关闭时,关闭挂钩可用于执行清理资源或保存状态。 执行干净资源意味着关闭日志文件,发送一些警报或其他内容。 因此,如果要在JVM关闭之前执行某些代码,请使用关闭挂钩(shutdown hook)。
JVM什么时候关闭?
JVM在以下情况下关闭:
ctrl + c
System.exit(int)
方法addShutdownHook(Thread hook)方法Runtime
类的addShutdownHook()
方法用于向虚拟机注册线程。
语法如下:
public void addShutdownHook(Thread hook){}
可以通过调用静态工厂方法getRuntime()
来获取Runtime
类的对象。 例如:
Runtime r = Runtime.getRuntime();
工厂方法
返回类实例的方法称为工厂方法。
package com.zyiz; class MyThread extends Thread{ public void run(){ System.out.println("shut down hook task completed.."); } } public class TestShutdown1{ public static void main(String[] args)throws Exception { Runtime r=Runtime.getRuntime(); r.addShutdownHook(new MyThread()); System.out.println("Now main sleeping... press ctrl+c to exit"); try{Thread.sleep(3000);}catch (Exception e) {} } }
执行上面示例代码,得到以下结果:
Now main sleeping... press ctrl+c to exit shut down hook task completed.. Process finished with exit code 0
注意: 可以通过调用Runtime
类的halt(int)
方法来停止关闭序列。
package com.zyiz; public class TestShutdown2{ public static void main(String[] args)throws Exception { Runtime r=Runtime.getRuntime(); r.addShutdownHook(new Thread(){ public void run(){ System.out.println("shut down hook task completed.."); } } ); System.out.println("Now main sleeping... press ctrl+c to exit"); try{Thread.sleep(3000);}catch (Exception e) {} } }
执行上面示例代码,得到以下结果:
Now main sleeping... press ctrl+c to exit shut down hook task completed.. Process finished with exit code 0