properties类继承Hashtable类并实现了map接口,是一种以键值对存在的属性集,键和值都是字符串类型;
properties实现保存属性;
FileOutputStream fos = new FileOutputStream("XXXX.properties", true);//true表示追加打開
pro.setProperty(key, value);//保存值
pro.store(fos, null);
读取properties中的数据:
InputStream in = new BufferedInputStream(new FileInputStream("XXXX.properties"));
pro.load(in); // /加载属性列表
输出properties中的所有值
Iterator<String> it = pro.stringPropertyNames().iterator();
while (it.hasNext()) {
String key = it.next();
System.out.println(key + ":" + pro.getProperty(key));
}
如果查找其中的一个属性值,就要用到contains(String value),containsKey(String key),contains(String value);然后用properties中的getProperties()获取值
containsKey:指的是是否包含你要的key值;
containsValue:指的是是否包含你要的value值