java调用系统进程,控制被调用进程与java主进程的执行顺序
运用java调用本地系统的exe文件的代码如下:
public static void openExe(String command) {
Runtime rn = Runtime.getRuntime();
Process p = null;
try {
p = rn.exec(command);
} catch (Exception e) {
e.printStackTrace();
System.out.println("Error exec!");
System.out.println(e.getMessage());
}
}