以记事本程序为例 Process p = Runtime.getRuntime().exec("notepad.exe"); try { p.waitFor();//等待notepad.exe的结束 } catch(InterruptedException ex) { System.err.println("ERROR"); System.exit(1); } //继续自己的程序 参见
本文共 281 字,大约阅读时间需要 1 分钟。
以记事本程序为例 Process p = Runtime.getRuntime().exec("notepad.exe"); try { p.waitFor();//等待notepad.exe的结束 } catch(InterruptedException ex) { System.err.println("ERROR"); System.exit(1); } //继续自己的程序 参见
转载于:https://www.cnblogs.com/passer1991/archive/2012/12/11/2812574.html