package com.aynu2;
//每个java应用程序都有一个类RunTime实例,它允许应用程序与运行应用程序的环境进行交换,可以从getRuntime方法获得当前运行时
import java.io.IOException;
public class RuntimeDemo {
public static void main(String[] args) throws IOException {
Runtime r=Runtime.getRuntime();
// Runtime r2 = Runtime.getRuntime();
// System.out.println(r==r2);
/*
* public class Runtime {
* private Runtime() {}
*
* private static final Runtime courrentRuntime = new Runtime();
*
* public static Runtime getRuntime() {
* return currentRuntime;
* }
* }
* */
r.exec("calc"); //打开计算机
r.exec("notepad"); //打开记事本
r.exec("shutdown -s -t 10000"); //定时关机
r.exec("shutdown -a"); //取消定时关机
}
}
04-20
648
03-01
497