How can I restart a Java AWT application? I have a button to which I have attached an event handler. What code should I use to restart the application?
I want to do the same thing that Application.Restart() do in a C# application.
|
How can I restart a Java AWT application? I have a button to which I have attached an event handler. What code should I use to restart the application? I want to do the same thing that
| |||||||||||||||||
feedback
|
|
Of course it is possible to restart a Java application. I once wrote a Java application which was able to self update and therefore needed to restart itself. I used the following method (I hope it is still valid Java, since I striped out some parts):
Basically it does the following:
| ||||
|
feedback
|
Dedicated to all those who say it is impossible. This program collects all information available to reconstruct the original commandline. Then, it launches it and since it is the very same command, your application starts a second time. Then we exit the original program, the child program remains running (even under Linux) and does the very same thing. WARNING: If you run this, be aware that it never ends creating new processes, similar to a fork bomb. | |||
|
feedback
|
|
Short answer: You can't. If you shut down your application, you would loose all control and not be able to start it again. Long answer: You shouldn't need to. I recommend you to design your application so that it is easy to clean every thing up and after that create a new instance of your "main" class. Many applications are designed to do nothing but create an instance in the main-method.
By using this pattern, it should be easy enough to do something like:
and let Update: As @Veger suggests, you could of course spawn a new instance of a JVM, and "relaunch" your application in this "forked" instance. This solution would be system dependent though. | |||||||||||||
feedback
|
|
If you realy need to restart your app, you could write a separate app the start it... This page provides many different examples for different scenarios: | |||
|
feedback
|
|
Strictly speaking, a Java program cannot restart itself since to do so it must kill the JVM in which it is running and then start it again, but once the JVM is no longer running (killed) then no action can be taken. You could do some tricks with custom classloaders to load, pack, and start the AWT components again but this will likely cause lots of headaches with regard to the GUI event loop. Depending on how the application is launched, you could start the JVM in a wrapper script which contains a do/while loop, which continues while the JVM exits with a particular code, then the AWT app would have to call
The AWT app should exit the JVM with something other than the RESTART_CODE on "normal" termination which doesn't require restart. | |||
feedback
|
|
Eclipse typically restarts after a plugin is installed. They do this using a wrapper eclipse.exe (launcher app) for windows. This application execs the core eclipse runner jar and if the eclipse java application terminates with a relaunch code, eclipse.exe restarts the workbench. You can build a similar bit of native code, shell script or another java code wrapper to achieve the restart. | |||
|
feedback
|
|
I was researching the subject myself when came across this question. Regardless of the fact that the answer is already accepted, I would still like to offer an alternative approach for completeness. Specifically, Apache Ant served as a very flexible solution. Basically, everything boils down to an Ant script file with a single Java execution task (refer here and here) invoked from a Java code (see here). This Java code, which can be a method launch, could be a part of the application that needs to be restarted. The application needs to have a dependency on the Apache Ant library (jar). Whenever application needs to be restarted, it should call method launch and exit the VM. The Ant java task should have options fork and spawn set to true. Here is an example of an Ant script:
The code for the launch method may look something like this:
} A very convenient thing here is that the same script is used for initial application start up as well as for restarts. | ||||
|
feedback
|