每一个JVM进程之中都有runtime类。 runtime被定义的时候,构造方法就已经被私有化了;所以runtime类中有个static方法; 主要应用于GC处理器的应用,runtime类的gc()方法垃圾回收;
//开关进程代码
package cn.mldn.demo;
public class TestDemo{
public static void main(String args[])throws Exception{
Runtime rt = Runtime.getRuntime();
Process pro = rt.exec("mspaint.exe");
Thread.sleep(2000);
pro.destroy();
}
}