以记事本程序为例
Process p = Runtime.getRuntime().exec("notepad.exe");
try {
p.waitFor();//等待notepad.exe的结束
}
catch(InterruptedException ex) {
System.err.println("ERROR");
System.exit(1);
}
//继续自己的程序
参见http://zhidao.baidu.com/question/100219452.html
标签:exe,java,已近,程序,notepad,System,怎么样,ex
From: https://blog.51cto.com/u_16066377/6185092