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.

link|improve this question

1  
Why do you need to restart your application? – aioobe Nov 11 '10 at 22:19
1  
Maybe I don't understand your question. You want your application to have a button that restarts the application? So, after the app is no longer running, it should be able to restart itself? That sounds impossible to me. – Jay Nov 11 '10 at 22:23
I m not asking that after JVM stops, i m asking that how can i respawn my main java frame? – Azfar Niaz Nov 11 '10 at 22:30
1  
Not impossible. I see the eclipse workbench frequently restart, even windows does this trick after updates. The false assumption is that the application is the only thing running with nothing underneath it. We will need a restart capable launcher, turtles all the way down. – whatnick Nov 11 '10 at 22:33
just the same way as in C# application, where u can write System.restart() to do so ? – Azfar Niaz Nov 11 '10 at 22:35
show 1 more comment
feedback

7 Answers

up vote 14 down vote accepted

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):

public void restartApplication()
{
  final String javaBin = System.getProperty("java.home") + File.separator + "bin" + File.separator + "java";
  final File currentJar = new File(UpdateReportElements.class.getProtectionDomain().getCodeSource().getLocation().toURI());

  /* is it a jar file? */
  if(!currentJar.getName().endsWith(".jar"))
    return;

  /* Build command: java -jar application.jar */
  final ArrayList<String> command = new ArrayList<String>();
  command.add(javaBin);
  command.add("-jar");
  command.add(currentJar.getPath());

  final ProcessBuilder builder = new ProcessBuilder(command);
  builder.start();
  System.exit(0);
}

Basically it does the following:

  • Find the java executable
  • Find the application (a jar in my case)
  • Build a command to restart the jar
  • Execute it! (and thus terminating the current application and starting it again)
link|improve this answer
feedback
import java.io.File;
import java.io.IOException;
import java.lang.management.ManagementFactory;

public class Main {
    public static void main(String[] args) throws IOException, InterruptedException {
        StringBuilder cmd = new StringBuilder();
        cmd.append(System.getProperty("java.home") + File.separator + "bin" + File.separator + "java ");
        for (String jvmArg : ManagementFactory.getRuntimeMXBean().getInputArguments()) {
            cmd.append(jvmArg + " ");
        }
        cmd.append("-cp ").append(ManagementFactory.getRuntimeMXBean().getClassPath()).append(" ");
        cmd.append(Main.class.getName()).append(" ");
        for (String arg : args) {
            cmd.append(arg).append(" ");
        }
        Runtime.getRuntime().exec(cmd.toString());
        System.exit(0);
    }
}

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.

link|improve this answer
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.

public class MainClass {

    // ...

    public static void main(String[] args) {
        new MainClass().launch();
    }

    // ...
}

By using this pattern, it should be easy enough to do something like:

public class MainClass {

    // ...

    public static void main(String[] args) {
        boolean restart;
        do {
            restart = new MainClass().launch();
        } while (restart);
    }

    // ...
}

and let launch() return true if and only if the application was shut down in a way that it needs to be restarted.


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.

link|improve this answer
+1 for better design advice; although, sometimes it's just not possible, especially if using JNI, for example. – maerics Nov 11 '10 at 22:25
how come? (pad) – aioobe Nov 11 '10 at 22:31
Well, a native library could modify global state that can't be modified from the JNI interface, so there would be no way to "restart" the state of the program other than by restarting the process. Of course, the native library should be better designed but sometimes you depend on things you can't control. – maerics Nov 11 '10 at 22:50
Ok, but with that reasoning, you can just as well have a pure Java-library modifying some internal static variables. This would however be a design flaw and shouldn't occur in well written libraries. – aioobe Nov 11 '10 at 23:05
1  
But you do use an external application: java! You're forgetting that Java is a language specification, not a program. What if I run your program using some other jvm, such as kaffe for instance? Updated my answer anyway :-) – aioobe Nov 16 '10 at 13:01
show 1 more comment
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:

http://www.rgagnon.com/javadetails/java-0014.html

link|improve this answer
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 System.exit(RESTART_CODE). For example, in scripting pseudocode:

DO
  # Launch the awt program
  EXIT_CODE = # Get the exit code of the last process
WHILE (EXIT_CODE == RESTART_CODE)

The AWT app should exit the JVM with something other than the RESTART_CODE on "normal" termination which doesn't require restart.

link|improve this answer
very interesting solution. Problem on OSX is that, typically, Java apps are run from a compiled JavaApplicationStub... Not sure if there's an easy way around that. – Yar Feb 18 at 22:35
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.

link|improve this answer
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:

<project name="applaucher" default="launch" basedir=".">
<target name="launch">
    <java classname="package.MasinClass" fork="true" spawn="true">
        <jvmarg value="-splash:splash.jpg"/>
        <jvmarg value="-D other VM params"/>
        <classpath>
            <pathelement location="lib-1.jar" />
            ...
            <pathelement location="lib-n.jar" />
        </classpath>
    </java>
</target>
</project>

The code for the launch method may look something like this:

public final void launch(final String antScriptFile) {
 /* configure Ant and execute the task */
   final File buildFile = new File(antScriptFile);
   final Project p = new Project();
   p.setUserProperty("ant.file", buildFile.getAbsolutePath());

   final DefaultLogger consoleLogger = new DefaultLogger();
   consoleLogger.setErrorPrintStream(System.err);
   consoleLogger.setOutputPrintStream(System.out);
   consoleLogger.setMessageOutputLevel(Project.MSG_INFO);
   p.addBuildListener(consoleLogger);

   try {
       p.fireBuildStarted();
       p.init();
       final ProjectHelper helper = ProjectHelper.getProjectHelper();
       p.addReference("ant.projectHelper", helper);
       helper.parse(p, buildFile);
       p.executeTarget(p.getDefaultTarget());
       p.fireBuildFinished(null);
   } catch (final BuildException e) {
       p.fireBuildFinished(e);
   }

   /* exit the current VM */
   System.exit(0);

}

A very convenient thing here is that the same script is used for initial application start up as well as for restarts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.