Search code examples
javaexit-codesystem.exit

Running code on program exit in Java


Is it possible to write a method that System.exit will call when you terminate a program?


Solution

  • Use Runtime.getRuntime().addShutdownHook(Thread).