-3
votes
3answers
56 views

Which is the Best way to exit a method

I was looking for the ways to exit a method, i found two methods System.exit(); Return; System.exit() - Exits the full program Return exits current method and returns an error that remaining code are ...
0
votes
1answer
30 views

Should I close all of my resources when exiting the application?

I have an application which is communicating via a COM Port. When the user exits my application, should the app clean/close everything? If I don't do this, is my application security compromised?
1
vote
1answer
24 views

How do you tell when a program is being terminated?

So I'm working on a command-line server program that has to handle user stats and other data, and I have a command to stop the server and save user stats and the data to a file. What I want to know is ...
0
votes
2answers
234 views

Phonegap: javascript timer still running after closing DroidGap activity

I'm working in an Android WebApp using Phonegap. To exit the application, I'm calling navigator.app.exitApp from JavaScript code. I tried to find the documentation page for this method, but it does ...
0
votes
5answers
125 views

How to make Java program exit after a couple of seconds

Is there anyway I can exit a java program after a couple of seconds e.g. 5 seconds. I know you can quit the java program using: System.exit(0); But I'm not sure whether the 0 stands for seconds ...
5
votes
3answers
171 views

Exit eclipse and keep Java application running?

How can I exit Eclipse without killing applications launched from within eclipse? I understand that applications launched in debug mode have a network link with Eclipse, but there should be no problem ...
1
vote
2answers
133 views

Websphere MQ v7 - Security exits in Java?

According to the Online IBM doc for WMQ 7 it's possible to write channel security exits in the Java language, so I don't need to remember C programming and no worry about compiling for different ...
2
votes
0answers
351 views

Get exit code from a java application in batch file

I'm currently making an effort to create test cases for one of our java applications. In my code, my java application calls a batch file, which in turn starts a separate java process, that returns an ...
0
votes
1answer
150 views

How to close a GUI on JButton click [closed]

I have written some coding that has a GUI that has an enter button that, when clicked, opens the tool that I have created, but what I also want the jbutton to do is to close the first GUI down as well ...
0
votes
1answer
76 views

How to terminate applet gracefully?

My applet is supposed to take external parameters from html file which might be dynamically generated. <param name="type1" value="value1"> <param name="type2" value="value2"> Those ...
3
votes
4answers
106 views

Java JFrame and program flow

When i create a simple program with a JFrame ,from the moment the setVisible method is true, no matter what i do with the frame, the program doesn't exit.Could someone explain me the flow? Thanks
0
votes
0answers
56 views

How to debug JVM termination reason?

I wrote special bean for Spring to wait my daemon-threaded beans terminated: public class Waitor2 { public interface Joinable { void join() throws InterruptedException; } ...
1
vote
1answer
206 views

Java Application hangs on Windows Shutdown

I have this whole code. My Application hangs up after the windows is force shutdown then cancel. application running... >> windows force shutdown >> cancel >> back to windows ...
1
vote
1answer
246 views

Java crash when exit application: A fatal error has been detected by the Java Runtime Environment:

I have a Java application to drive a motor. The driver of the motor has been written in C++ with the Microsoft Visual Studio. I import (native code) this dll. The Java application runs without ...
0
votes
1answer
219 views

Java Exit on Windows Shutdown

I have this code. I want to exit my Java Application if it detects that the computer is shutting down. I have this problem, If shutdown is clicked on windows my java application disconnects from ...
0
votes
2answers
97 views

Exit my program after finding an error

My program suppose to exit after any error occur! It gets 3 command line and validate and check if they are in range. if they are not, then must print the error and exit the program! I did this ...
1
vote
2answers
84 views

Closing the Camera Application from a T/P Application

My Problem... I have accessed the Camera App from my third party app , I then take a picture. then I go to the Menu and I have added in a menuitem (MENUITEM_CAMERA_PREVIEW) . My menu item must ...
1
vote
3answers
248 views

Java application not exit on calling System.exit(0)

I have a Java application running on both Mac and Windows. I call System.exit(0) on user pressing "exit" button. The application works well on Win7. But on Mac, after I press "exit" button, the ...
-2
votes
3answers
146 views

Crash with music service when exiting [closed]

if (MusicService.player1.isPlaying()) { MusicService.player1.stop(); stopService(new Intent(ButtonActivity.this, MusicService.class)); ...
2
votes
2answers
2k views

JavaFX 2.1 and threads? -or- Ending a JavaFX application gracefully?

I wanted a really simple way to play an mp3 file from a Java application. After some research I found that the newest versions of Java 7 SE are packaged with JavaFX, so I thought I would try. This ...
0
votes
1answer
237 views

Exit Java program upon input

This program lets the user input a number and checks if the number is prime. However, if want the program to exit when the user inputs the "q". I have tried several things (do while, if) but none of ...
1
vote
4answers
223 views

How to link a JMenuItem to a JButton

Let's say I have a JMenuItem with a text inside "Exit", and a JButton with the text "Exit", the command which JButton will use is System.exit(0), of course using Action Listener, Ok i Know, I can put ...
0
votes
1answer
50 views

Exit Query for Java program

I would like to make my script run a "Query" method when the exit button on my JFrame is pushed. I tried it with set default close operation but that wont work obviously so what should i do? Thanks!
2
votes
1answer
650 views

JFrame Close button

I have a Jframe window inside which there is a button. By clicking the button it opens a new JFrame window. But when I close this window it automatically closes the first Jframe window with the ...
5
votes
2answers
886 views

Java: How to cancel application exit

On one of my programs, I want a Dialog to appear when the user attempts to exit the application. The user must then choose to save some state of the program, not to save or to cancel the exit ...
5
votes
1answer
2k views

System.exit(0) vs JFrame.EXIT_ON_CLOSE

Is there any difference between the two. I was reading an article ( http://www.javalobby.org/java/forums/t17933 ) about that you should always use System.exit(0); Currently I use ...
1
vote
6answers
18k views

How do I exit a while loop in Java?

What is the best way to exit/terminate a while loop in Java? For example, my code is currently as follows: while(true){if(obj == null){// I need to exit here}}
2
votes
1answer
3k views

JFrame intercept exit on close to save data

I created a window and want to intercept the exit with the method windowStateChanged to save the data before the application closes. However, it doesn't appear to be saving the data before it closes. ...
0
votes
1answer
312 views

Tests are not started after db creation by liquibase

I'm testing datasource layer using dbunit, junit, liquibase, hsqldb. I'm using in memory-state of hsqldb. Each time I start test, I create db structure using liquibase via command line: ...
5
votes
4answers
372 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. ...
1
vote
4answers
83 views

How can I clean everything after the code?

I have a program that is run by an external software. The first run is always successful. The second run causes the hanging of my software because there is something left from the previous run (some ...
1
vote
2answers
120 views

Java - catch PC is turning off event, or equivalent

I created a software which edits some XML files. When a file is opened a lock file is generated to avoid having multiple users editing the file at the same moment. I would like now to be able to ...
5
votes
3answers
1k views

Is there a replacement for EXIT_SUCCESS and EXIT_FAILURE in Java?

In C program, I generally use EXIT_SUCCESS or EXIT_FAILURE in exit() function to improve clarity and understandability of the program. But in System.exit(), I couldn't use these MACROS. I can ...
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.
0
votes
3answers
953 views

Back Button on exit creating a Force Close Error

I am trying to avoid using onDestroy and want to keep this as simple as possible, but when I exit the program, I get a Force Close error. Not sure why. Here is the code for the main part of the ...
2
votes
2answers
921 views

java out of memory then exit

I have a piece of software that has to analyze big files. Constraining the input or giving infinite memory is not an option, so I have to live with flying OOMEs. Because the OOME only kills the ...
2
votes
1answer
668 views

Java: How to handle a SIGTERM only?

Is there a way in Java to handle a received SIGTERM? I am running a java service but do not want to close my java service when the user log off. Would like to override only the sigterm shutdown ...
1
vote
2answers
1k views

panel exit in java

Frame fr; ... fr.setDefaultCloseOperation(Frame.???) What should I write instead of "???" to close the frame?
1
vote
3answers
3k views

How to break/exit different levels of methods calling in java

Let's say I have: public void one() { two(); // continue here } public void two() { three(); } public void three() { // exits two() and three() and continues back in one() } Is there any ...
0
votes
4answers
154 views

How to stop a program if file doesn't exist in a folder using java?

i have a program which select recent files from a directory and compress them into one file. but i want to stop the program if there is no files in the directory and display an error message like ...
0
votes
1answer
2k views

Java console program and CTRL-C

import java.util.Scanner; public class test { public static void main(String[] args) { Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { ...
8
votes
4answers
769 views

Catch an exit instruction by a library

To my astonishment and horror, I've just encountered the line System.exit(1); in a library I use. I'm planning on contacting the library's authors and asking what gives, but meanwhile is there any way ...
3
votes
3answers
2k views

System.exit(1) exists with return code 0

I have a call to System.exit(1) in my multi-threaded program. However from time to time instead of return code 1, the program exits with return code 0. I don't have any other calls System.exit() and ...
1
vote
1answer
592 views

How to know when a process has exited?

For a Java Process, I see a method to get the exit code, but how do I know when the process exited? I'd like to fire an event when my Process is finished running...
1
vote
1answer
4k views

Always app Java end with “Exit 143” Ubuntu

I have an application in java, which is permanently pulled. Execute it as follows: nohup ant> log.txt & The problem is that last indefinitely, the application quits and get a message "Exit ...
24
votes
6answers
27k views

When should we call System.exit in Java

In Java, What is the difference with or without System.exit(0) in following code? public class TestExit { public static void main(String[] args) { System.out.println("hello ...
6
votes
2answers
1k views

Execute a default task in ANT in case of failure

I'm currently using ANT for building my Java project on a Windows XP machine. In my build.xml file I've defined 3 task and I would like that,in case of fail,a default task be executed before closing ...
15
votes
3answers
5k views

Java: How to handle a SIGTERM

No many words needed: Is there a way in Java to handle a received SIGTERM?
5
votes
4answers
468 views

How can I close my software in a safe way?

Up to now I used my application as a stand alone product. So, when user pressed "Stop" button I called System.exit(0); and it was fine. Now my application will be called (in a programmatic way) from ...
7
votes
6answers
5k views

What can cause Java to keep running after System.exit()?

I have a Java program which is being started via ProcessBuilder from another Java program. System.exit(0) is called from the child program, but for some of our users (on Windows) the java.exe process ...

1 2