用处:开发过程中用于存储字符串类型的键和值
关系:是Hashtable中的一个子类
详细关系请看:Java集合类的关系
接下来看一下实例:
import java.util.*;
public class test2 {
public static void main(String[] args) {
Properties p=new Properties();
p.setProperty("Backgroup-color","red");
p.setProperty("Font-size","14px");
p.setProperty("Language", "chinese");
Enumeration names=p.propertyNames();
while(names.hasMoreElements()) {
String key=(String) names.nextElement();
String value=p.getProperty(key);
System.out.println(key+"="+value);
}
}
}
运行结果:
?setProperties()方法用于将配置项和值添加到Properties集合中,然后propertyNames()方法得到一个包含所有键的Enumeration对象,然后再遍历所有键,通过getProperties()方法获取键所对应的值。
|