I want run another application from java code.
Runtime rt = Runtime.getRuntime(); Process pr = rt.exec(\"cmd.exe\");
Process is launched, b
Process#waitFor() is what you're looking for.