Tagged Questions
The system.exit tag has no wiki summary.
5
votes
4answers
144 views
How can I exit only my sub-program, not the whole VM?
I have a Java swing launcher program to launch another class (running its main method).
Each program has its cancel button to exit itself.
I use System.exit(0); when this cancel button is pressed.
...
4
votes
1answer
12k views
How does Java's System.exit() work with try/catch/finally blocks?
I'm aware of headaches that involve returning in try/catch/finally blocks - cases where the return in the finally is always the return for the method, even if a return in a try or catch block should ...
3
votes
5answers
240 views
Running code on program exit in Java
This is a general question about Java.
Is it possible to write a method that System.exit will call when you terminate a program?
3
votes
2answers
117 views
Movie ended on JMF,now terminate program
I want my program to terminate itself once the movie played has ended,
using system.exit(0).
is there a way of doing that?
I dont want to use Timer.
2
votes
2answers
185 views
cleaning problem using java classes in matlab
I am writing a java application with a matlab ui.
For this I use java objects in matlab as explained here:
http://www.mathworks.com/help/techdoc/matlab_external/f4873.html
What I want to do is create ...
2
votes
2answers
884 views
Setting default System.exit codes in Java?
I have a C# app that runs a jar file and uses the System.exit code as a return value. A console window is displayed as a part of this jar, and if the user closes it (thereby terminating the jar) it ...
1
vote
2answers
66 views
How to catch System.exit() code within a huge Java project?
I am getting into a project which needs some automated review tools. Last week we found some System.exit() in the code which brought down the app servers.
It appears that FindBugs does not catch ...
1
vote
2answers
1k views
Android: Show toast after finishing application / activity
I want to show a simple toast, when exiting an application. The problem is, that the toast is not shown. I assume it is because the acitivity is finished or because of System.exit(0), but I don't know ...
0
votes
0answers
28 views
Rhodes System.exit generates error on exit on Win Mobile
As it is referenced in API, I used System.exit to quit my application. It seems to be working fine on IPhone emulator, but on Win Mobile it shows message :
A problem has occurred with myApp.exe. ...
0
votes
0answers
48 views
Android Mapview loading issue
I am finding it troublesome to handle the use of finish() and start.exit(0). I am going to explain the problem that I am having currently. I have two Activities A and B, both have one map each. When I ...
0
votes
4answers
314 views
difference between System.exit(0) and System.exit(-1)
Can any one share to me difference between System.exit(0) and System.exit(-1) it is helpful if you explain with example.
0
votes
0answers
152 views
SIGSEGV error whenever I call System.exit()
I'm debbuging a Java code which uses JNI to call a shared library (.so in Ubuntu Linux 10.04) and everytime the code reaches the line System.exit(1) a SIGSEGV error is generated and the JVM outputs ...
0
votes
5answers
1k views
Cant stop a while loop with a button
Im trying to write a program which moves the mouse every 3 minutes (to stop a screen saver coming on) but I want to be able to stop and start it at will. As you can see below I have create the buttons ...