In a Swing-app is it okay to invoke System.exit() from any thread? (e.g. on the EDT?)
In a Swing-app is it okay to invoke System.exit() from any thread? (e.g. on
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should not be calling
System.exit()if you can help it.The best way to exit a java process is to let all threads exit normally. This will terminate the VM.
In your main
JFrame, you shouldsetDefaultCloseOperation(JFrame.EXIT_ON_CLOSE).Then you can call
frame.dispose()to close theJFrameand exit the EDT.