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()); }
原文:http://my.oschina.net/robinjiang/blog/310174