Runtime rt = Runtime.getRuntime(); Process pr = rt.exec("cmd.exe");
流程已启动,但在后台.如何让它在前台运行?
Process pr = rt.exec("cmd.exe /c start");