我有以下 ShutdownHook 来检测应用程序何时退出:
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
public void run() {
// Do what you want when the application is stopping
sendMsg("", "goOfflineExit", "12");
}
}));
这在 Mac 操作系统上完美运行,但由于某种原因,在 Windows 上什么都没有触发。
任何想法我缺少什么?