Properties 是一个Map集合,
作用:当作配置文件,以字符串形式存储一些信息
无泛型 是Hashtable的子类
Properties prop = new Properties(); config.properties
prop.setProperty(,); 修改集合中的信息
Enumeration<String> en = (Enumeration)enpropertyName();
while(en.hasMoreElements()){
String key = en.nextElements();
String value = prop.getProperty(key);
prop.load(new FileInputStream("config.properties")); 获取配置文件中的信息
prop.store(new FileOutputStream("config.properties"),"xxx"); 改变,设置配置文件信息
保存到配置文件中 第二个参数是用来描述文件列表,可以为null
|
|