System 类包含一些与系统相关的类字段和方法。它不能被实例化,类中所有属性和方法都是static,可直接被System调用。
package com.tops;
import java.io.IOException;
import java.util.Properties;
public class SystemDemo {
public static void main(String[] args) throws IOException {
//static Properties getProperties() 取得当前的系统属性。
Properties p = System.getProperties();
System.out.println(p);
//String getenv(String name) 获得指定的环境变量;
System.out.println(System.getenv());
//调用记事本程序
//Runtime.getRuntime().exec("notepad ");
//调用qq(注意文件夹分隔符)
Runtime.getRuntime().exec("D:\\Program Files (x86)\\Tencent\\QQ\\Bin\\QQ.exe");
//static long currentTimeMillis() 返回以毫秒为单位的当前时间。
long time = System.currentTimeMillis();
System.out.println(time);
}
}
|
|