JVM won't die
in
Programming Questions
•
2 years ago
I have a Windows 7 machine, that runs the processing app file and exits the app fine (as far as closing it from the screen). However, the JVM is not terminating in the background. It stays active then jumps to 100% cpu on a core. How can I kill it for good.
I use super.stop() on exit.
I use super.stop() on exit.
- void stop()
- {
- try {
- button1.close();
- button2.close();
- super.stop();
- }
- catch (Exception e) {
- }
- }
1