当JVM正常或突然关闭时, 关闭钩子可用于执行清理资源或保存状态。执行干净的资源意味着关闭日志文件, 发送一些警报或其他内容。因此, 如果要在JVM关闭之前执行一些代码, 请使用shutdown挂钩。
JVM什么时候关闭?
在以下情况下, JVM将关闭:
- 用户在命令提示符下按ctrl + c
- 调用System.exit(int)方法
- 用户注销
- 用户关闭等
public void addShutdownHook(Thread hook){}
可以通过调用静态工厂方法getRuntime()获得Runtime类的对象。例如:
运行时r = Runtime.getRuntime();
工厂方法【Java线程和关闭钩子】返回类实例的方法称为工厂方法。
关机钩的简单示例
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) {}
}
}
Output:Now main sleeping... press ctrl+c to exit
shut down hook task completed..
注意:可以通过调用Runtime类的halt(int)方法来停止关闭序列。匿名类的关机挂钩示例相同:
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) {}
}
}
Output:Now main sleeping... press ctrl+c to exit
shut down hook task completed..
推荐阅读
- Java线程静态同步示例
- 小程序安卓渲染问题
- Android 自定义控件——图片剪裁
- Android图片剪裁库
- Android 拍照图片选取与图片剪裁
- Android 之 APK 反编译
- Android开发环境搭建(Windows)
- archive 打包出错apple mach-o linker (id) error
- appium元素定位