简体   繁体   中英

Prevent shutdown after shutdown hook

So, I should handle Ctrl-C. Ok, I can do that by registering a shutdown hook. And it works well until I want to prevent the shutdown. When Ctrl-C pressed I want to ask the user if he really wants to close the app, and if he isn't, then I want my app to continue running. The problem is I don't know how to prevent shutdown after Ctrl-C pressed.

Any help? :)

Once you're in a shutdown hook it's too late.

from Runtime.addShutdownHook :

Once the shutdown sequence has begun it can be stopped only by invoking the halt method, which forcibly terminates the virtual machine.

You can't abort a shutdown from inside a shutdown hook. It will proceed.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM