I want run another application from java code.
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd.exe");
Process is launched, but in background. How to make it run in foreground?
|
I want run another application from java code.
Process is launched, but in background. How to make it run in foreground? |
|||
|
|
|
You should tell cmd.exe that you want it to open in new window:
|
|||
|
|
|
Process#waitFor() is what you're looking for. |
|||
|
|
|
Consider using commons-exec when dealing with external processes. In my opinion it is much easier to handle than using the Java Runtime class. Tutorial : http://commons.apache.org/exec/tutorial.html |
||||
|
|
|
Run your command from a JDialog and after running it, use toBack().
|
|||
|
|