摘要:
public static void getSysProp(){ Properties props = System.getProperties(); Set<Entry<Object,Object>> res = props.entrySet(); Iterator it = res.iterator(); while (it.hasNext()) { Map.Entry e = (Map.Entry)it.next(); System.out... 阅读全文
posted @ 2009-12-02 16:44
zhwj184
阅读(233)
评论(0)
推荐(0)