Runtime类的概述和使用
Runtime类概述
每个Java应用程序都有一个Runtime类实例,使应用程序能够与其运行的环境相连接。可以通过getRuntime方法获取当前运行时。
应用程序不能创建自己的Runtime类实例。
Runtime类使用
public Process exec(String command)
import java.io.IOException; public class IntegerDemo { public static void main(String[] args) throws IOException { Runtime r = Runtime.getRuntime(); r.exec("notepad"); } }