本帖最后由 徐盼盼 于 2013-3-20 20:34 编辑
由于程序不能直接创建Runtime的实例,那么Runtime类在内部如何构造类的对象实例的?
public class TestRuntime {
public static void main(String[]args){
Process p=null;
try
{
p=Runtime.getRuntime().exec("notepad.exe TestRuntime.java");
Thread.sleep(5000);
}
catch(Exception e)
{
System.out.println(e.getMessage());
}
p.destroy();
}
}
|