• java System类


    System 类包含一些与系统相关的类字段和方法。它不能被实例化,类中所有属性和方法都是static,可直接被System调用。

    常用方法:

    static void exit(int status) 终止虚拟机的运行.对于发生了异常情况而想终止虚拟机的运行,传递一个非0数值,对于正常情况下退出系统传递0值;

    该方法实际调用的是Runtime.getRuntime().exit(int status);

    static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) 数组拷贝

    static long currentTimeMillis() 返回以毫秒为单位的当前时间。

    String getenv(String name)     获得指定的环境变量;

    static void gc()  运行垃圾回收器。

    实际上调用了 Runtime中的gc()方法;

    Runtime.getRuntime().exec("notepad ");

    static Properties getProperties()  取得当前的系统属性。

    static String getProperty(String key) 取得指定键指示的系统属性。

    static String getProperty(String key, String def)  获取用指定键描述的系统属性,def表示默认信息。

    Eg:package reviewDemo627;

    import java.util.Properties;

    public class Demo32 {

        public static void main(String[] args) {

            Properties p = System.getProperties();

            System.out.println(p);

           

            System.out.println(System.getenv());

        }

    }

  • 相关阅读:
    Mac保留Python2安装Python3(Anaconda3)
    Mybatis Plugin 以及Druid Filer 改写SQL
    Jackson替换fastjson
    Java单元测试 Http Server Mock框架选型
    应用中有多个Spring Property PlaceHolder导致@Value只能获取到默认值
    RabbitMQ Policy的使用
    Collectors.toMap不允许Null Value导致NPE
    php 删除标签
    php 替换标签
    jquery拼接html
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11132259.html
Copyright © 2020-2023  润新知