The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
39 views

Garbage collection in Invoked Methods Java

My question actually consists of two parts. The first question has to do when using the java Method class to invoke a method from a loaded class. Does this "invoked" method run in a separate thread? ...
1
vote
1answer
21 views

Form do not disappear on closing java application

I created a hook that excute some operation when the form is closed: Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() { public void run() { ...
0
votes
1answer
59 views

System.exit(0) without grant possible under security manager

System.exit(0); or System.exit(2); are posiible to execute without error, run with java -Djava.security.manager -Djava.security.policy==app.policy -cp bin pl.com.App app.policy: grant { ...
2
votes
1answer
136 views

Java program does not exit based on string comparison

I'm a novice working on a homework assignment introducing us to using files in Java, and I'm trying to include an option for the user to exit early if they are not having success in creating a file ...
1
vote
5answers
478 views

Runtime.exec getting killed by System.exit?

I have a java program that is supposed to run a bat file, and then exit with a success code 0. The code essentially looks like this Runtime.exec(....); System.exit(0); 99.8% of the time, this ...
1
vote
2answers
287 views

How can I “capture” System.exit(-1) from different thread?

I have the following System.setSecurityManager(new SecurityManager() { @Override public void checkExit(int status) { super.checkExit(status); //custom exception extends ...
1
vote
2answers
287 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 ...
5
votes
4answers
370 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. ...
2
votes
4answers
3k 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.
2
votes
2answers
465 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 ...
5
votes
5answers
3k views

Running code on program exit in Java

Is it possible to write a method that System.exit will call when you terminate a program?
3
votes
2answers
212 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.
0
votes
5answers
3k 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 ...
4
votes
2answers
3k 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 ...
2
votes
2answers
3k 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 ...
10
votes
2answers
26k 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 ...