科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道如何使用Runtime.addShutdownHook

如何使用Runtime.addShutdownHook

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

以前从未用过 Runtime.addShutdownHook(Thread), 也不知道什么是 shutdown hook. 最近刚刚接触了一点,总结一下。

作者:中国IT实验室 来源:中国IT实验室 2007年9月24日

关键字: 使用 编程 java

  • 评论
  • 分享微博
  • 分享邮件
    以前从未用过 Runtime.addShutdownHook(Thread), 也不知道什么是 shutdown hook.
最近刚刚接触了一点,总结一下。

根据 Java API, 所谓 shutdown hook 就是已经初始化但尚未开始执行的线程对象。在
Runtime 注册后,如果 jvm 要停止前,这些 shutdown hook 便开始执行。

有什么用呢?就是在你的程序结束前,执行一些清理工作,尤其是没有用户界面的程序。

很明显,这些 shutdown hook 都是些线程对象,因此,你的清理工作要写在 run() 里。
根据 Java API,你的清理工作不能太重了,要尽快结束。但仍然可以对数据库进行操作。

举例如下:

  1. package john2;
  2. /**
  3.  * test shutdown hook
  4.  * All rights released and correctness not guaranteed.
  5.  */
  6. public class ShutdownHook implements Runnable {
  7.     
  8.     public ShutdownHook() {
  9.         // register a shutdown hook for this class.
  10.         // a shutdown hook is an initialzed but not started thread, which will get up and run
  11.         // when the JVM is about to exit. this is used for short clean up tasks.
  12.         Runtime.getRuntime().addShutdownHook(new Thread(this));
  13.         System.out.println(">>> shutdown hook registered");
  14.     }
  15.     
  16.     // this method will be executed of course, since it's a Runnable.
  17.     // tasks should not be light and short, accessing database is alright though.
  18.     public void run() {
  19.         System.out.println("\n>>> About to execute: " + ShutdownHook.class.getName() + ".run() to clean up before JVM exits.");
  20.         this.cleanUp();
  21.         System.out.println(">>> Finished execution: " + ShutdownHook.class.getName() + ".run()");
  22.     }
  23.     
  24.         // (-: a very simple task to execute
  25.     private void cleanUp() {
  26.         for(int i=0; i < 7; i++) {
  27.             System.out.println(i);
  28.         }
  29.     }
  30.     /**
  31.      * there're couple of cases that JVM will exit, according to the Java api doc.
  32.      * typically:
  33.      * 1. method called: System.exit(int)
  34.      * 2. ctrl-C pressed on the console.
  35.      * 3. the last non-daemon thread exits.
  36.      * 4. user logoff or system shutdown.
  37.      * @param args
  38.      */
  39.     public static void main(String[] args) {
  40.         
  41.         new ShutdownHook();
  42.         
  43.         System.out.println(">>> Sleeping for 5 seconds, try ctrl-C now if you like.");
  44.         
  45.         try {
  46.             Thread.sleep(5000);     // (-: give u the time to try ctrl-C
  47.         } catch (InterruptedException ie) { 
  48.             ie.printStackTrace(); 
  49.         }
  50.         
  51.         System.out.println(">>> Slept for 10 seconds and the main thread exited.");
  52.     }
  53. }


参考资料:
1. Java API Documentation
2. http://java.sun.com/j2se/1.3/docs/guide/lang/hook-design.html

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章