System 类包含一些有用的类字段和方法。它不能被实例化。
在 System 类提供的设施中,有标准输入、标准输出和错误输出流;对外部定义的属性和环境变量的访问;加载文件和库的方法;还有快速复制数组的一部分的实用方法。
标准输入、标准输出和错误输出流对象
PrintStream err:“标准”错误输出流。
InputStream in:“标准”输入流。
PrintStream out:“标准”输出流。
常用方法
[if !supportLists]l [endif]void arraycopy(Object src, int srcPos, Object dest, int destPos, int
length) :从指定源数组中复制一个数组,复制从指定的位置开始,到目标数组的指定位置结束。
[if !supportLists]l [endif]long currentTimeMillis() :返回以毫秒为单位的当前时间。
[if !supportLists]l [endif]void exit(int status) :终止当前正在运行的 Java 虚拟机。
[if !supportLists]l [endif]void gc():运行垃圾回收器。
[if !supportLists]l [endif]Properties getProperties():确定当前的系统属性。
[if !supportLists]l [endif]String getProperty(String key):获取指定键指示的系统属性。
[if !supportLists]l [endif]void setErr(PrintStream err) :重新分配“标准”错误输出流。
[if !supportLists]l [endif]void setIn(InputStream in):重新分配“标准”输入流。
[if !supportLists]l [endif]void setOut(PrintStream out):重新分配“标准”输出流。
[if !supportLists]l [endif]String setProperty(String key, String value) :设置指定键指示的系统属性。