package cn.itcast_03;
import java.io.IOException;
/*
* Runtime:每个Java应用程序都有一个Runtime类实例,使应用程序能够与其运行的环境相连接。
* exec(String command) 可以执行dos命令
*/
public class RuntimeDemo {
public static void main(String[] args) throws IOException {
Runtime r = Runtime.getRuntime();
//打开扫雷
r.exec("winmine");
//打开记事本
r.exec("notepad");
//打开计算器
r.exec("calc");
//10000秒后关机
r.exec("shutdown -s -t 10000");
//取消关机命令
r.exec("shutdown -a");
}
}
/*
* class Runtime {
* private Runtime() {}
* private static Runtime currentRuntime = new Runtime();
* public static Runtime getRuntime() {
* return currentRuntime;
* }
* }
*/