properties 里面自带一个方法,可以返回枚举,可以直接用,挺好的,不过也可以去用map的功能返回set集合来做
- public class SystemDemo {
- public static void main(String[] args) {
- Properties pro = System.getProperties();
- Enumeration en = pro.propertyNames();
-
- while(en.hasMoreElements()){
- String key = (String) en.nextElement();
- String value = pro.getProperty(key);
- System.out.println(key+"="+value);
- }
- }
- }
复制代码 |