Java代码获取所有系统属性

Properties props = System.getProperties();
 
        Iterator<Entry<Object, Object>> it = props.entrySet().iterator();
        while(it.hasNext()) {
            Entry<Object, Object> ent = it.next();
            System.out.println(ent.getKey() + ":" + ent.getValue());
        }


你可能感兴趣的:(Java代码获取所有系统属性)