给应用程序注入钩子程序
生活随笔
收集整理的這篇文章主要介紹了
给应用程序注入钩子程序
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package com.thread.hook;/*** 給應用程序注入鉤子程序*/
public class ExitCapture {public static void main(String[] args) {Runtime.getRuntime().addShutdownHook(new Thread(()->{System.out.println("程序將要退出");notifyAndRelease();}));int i = 0;while (true){try {Thread.sleep(1_000);System.out.println("working.....");} catch (InterruptedException e) {e.printStackTrace();}i++;if (i==15){throw new RuntimeException("error");}}}public static void notifyAndRelease(){System.out.println("notify to the admin");try {Thread.sleep(1_000);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("線程將要釋放資源");try {Thread.sleep(1_000);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("已經釋放資源");}
}
總結
以上是生活随笔為你收集整理的给应用程序注入钩子程序的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 升级在谷歌电子市场上传的应用
- 下一篇: 68超标量流水线的基本概念