package cn
.itcast
.p1
.otherapi
;
import java
.io
.IOException
;
public class RuntimeDemo
{
public static void
main(String
[] args
) throws IOException
, InterruptedException
{
Runtime r
= Runtime
.getRuntime();
Process p
= r
.exec("notepad.exe");
Thread
.sleep(5000);
p
.destroy();
}
}
转载请注明原文地址:https://blackberry.8miu.com/read-16688.html