黑马程序员技术交流社区
标题:
关于property问题
[打印本页]
作者:
Inspur
时间:
2013-9-17 20:40
标题:
关于property问题
本帖最后由 Inspur 于 2013-9-20 10:58 编辑
毕老师在你课上演示了property的存储时,用到了store(
OutputStream
out, String comments),谈到comments注释时一句话带过,求大神指导一下commments的使用,最好给个例子,谢谢
作者:
wumuzhong
时间:
2013-9-17 22:48
public class PropertiesDemo {
public static void main(String[] args) throws Exception{
Properties pro = new Properties(); //声明属性集合对象
pro.setProperty("a", "one"); //设置键值
pro.setProperty("b", "two");
pro.setProperty("c", "three");
pro.setProperty("d", "four");
File f = new File("d:" + File.separator + "test.properties"); //设置文件路径
if(!f.exists()){//若文件不存在
pro.store(new FileOutputStream(f),"Info");//存放属性值到文件
}else {//若文文件存在
pro.load(new FileInputStream(f)); //从文件读取属性
}
}
}
结果为:
#Info
#Tue Sep 17 22:41:30 CST 2013
b=two
a=one
d=four
c=three
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2