Properties props = System.getProperties(); //使用Enumeration走訪Map物件 Enumeration enumeration = props.propertyNames(); while (enumeration.hasMoreElements()) { String name = (String) enumeration.nextElement(); String value = (String) props.getProperty(name); System.out.println(name + ":" + value); }
No comments:
Post a Comment