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());
}
转载于:https://my.oschina.net/robinjiang/blog/310174