class RuntimeDemo {
public static void main(String[] args) throws Exception {
//以下代码实现了p进程调用QQ后,沉睡4秒,然后杀死进程。
Runtime r = Runtime.getRuntime( );
Process p = r.exec("D:\\soft\\qq\\qqfiles\\Bin\\QQ.exe");
Thread.sleep(4000);
p.destroy( );
}
}
微笑=.一瞬间 发表于 2014-4-29 10:21
Process类的destroy方法只能杀死父进程,而无法杀死子进程
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |