Java, run another application in foreground

Viewed 5075

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?

4 Answers
Related