常用的方法:
long currentTimeMillis(); 获取当前时间的毫秒值
void exit();终止当前正在运行的 Java 虚拟机。
public static void Method(){
long l = System.currentTimeMillis();
System.out.println(l);
System.exit();
}
描述系统属性信息:Properties System.getProperties();
该方法获取的信息存储在Properties集合中
因为Properties是Hashtable的子类,也就是Map集合的一个子类对象,要倒入util包
那么可以通过map的方法取出该集合中的元素
该集合中的键和值存储的都是字符串,没有泛型的定义
public static void Method_Properties(){
//获取当前系统所有属性信息
Properties prop = System.getProperties();
//遍历prop中的属性信息,也可以使用迭代器
for(Object obj : prop.keySet()){
String value = (String)prop.get(obj);
System.out.println(obj+"==="+value);
//通过键获取对应的属性信息
String value = System.getProperty("os.name");//如果没有该键返回null
System.out.println(value);
}
}
在系统中自定义系统信息
public static void SetProperties(){
System.setProperty("makey","myvalue");
System.out.println(System.getProperty("makey"));
}
out:标准输出,默认是显示器
in:标准输入,默认是键盘