java基础-IO流对象之Properties集合

时间:2024-01-05 13:40:44

                java基础-IO流对象之Properties集合

                                  作者:尹正杰

版权声明:原创作品,谢绝转载!否则将追究法律责任。

一.Properties集合的特点

java基础-IO流对象之Properties集合

  Properties类表示了一个持久的属性集。Properties可保存在流中或从流中加载,属性列表中每个键即及其对应值都是一个字符串。总结其显而易见的特点如下:

    1>.Hashtable的子类,map集合中的方法都有可以用;

    2>.该集合没有泛型,键值都是字符串;

    3>.它是一个可以持久化的属性集,键值可以存储到集合中,也可以存储到持久化的设备(硬盘,U盘,光盘)上。键值的来源也可以是持久化的设备。

    4>.有和流计数相结合的方法如:“load(InputStream inStream)”,“load(Reader reader) ”,“store(OutputStream out, String comments) ”,“store(Writer writer, String comments) ”。

二.Properties集合常用方法

1>.Properties集合存储键值对

 /*
@author :yinzhengjie
Blog:http://www.cnblogs.com/yinzhengjie/tag/Java%E5%9F%BA%E7%A1%80/
EMAIL:y1053419035@qq.com
*/ package cn.org.yinzhengjie.note6; import java.util.Properties;
import java.util.Set; public class PropertiesDemo {
public static void main(String[] args) {
Properties p = new Properties();
//1>.使用setProperty方法存储键值对,其底层调用的是父类(Hashtable)的put方法,可以通过源码查看。
p.setProperty("Name", "yinzhengjie");
p.setProperty("Age", "18");
p.setProperty("Hobby", "Cosplay"); System.out.println(p);
//2>.通过键获取值,如果给定的键值不存在就返回null。
String value = p.getProperty("Name1");
System.out.println(value); //3>.通过stringPropertyNames方法遍历Properties集合,该方法是将集合中的键存储到Set集合,类似于Map接口的方法keySet.
Set<String> set = p.stringPropertyNames();
for (String key : set) {
System.out.println(key+"==="+p.getProperty(key));
} }
} /*
以上代码执行结果如下:
{Hobby=Cosplay, Age=18, Name=yinzhengjie}
null
Hobby===Cosplay
Age===18
Name===yinzhengjie
*/

2>.(load方法)流对象读取文件中的键值对,保存到集合

java基础-IO流对象之Properties集合

 /*
@author :yinzhengjie
Blog:http://www.cnblogs.com/yinzhengjie/tag/Java%E5%9F%BA%E7%A1%80/
EMAIL:y1053419035@qq.com
*/ package cn.org.yinzhengjie.note6; import java.io.FileReader;
import java.io.IOException;
import java.util.Properties; public class PropertiesDemo {
public static void main(String[] args) throws IOException {
Properties p = new Properties();
//创建字符流对象,用于去读文件
FileReader fr = new FileReader("yinzhengjie.properties");
//调用集合的方法load,传递字符输入流,把文件的内容都加载到p对象中。
p.load(fr);
//加载完毕后,fr流对象就没有任何的利用价值了,关掉即可。
fr.close();
System.out.println(p); }
} /*
以上代码执行结果如下:
{name=yinzhengjie, age=18, email=y1053419035@qq.com}
*/

3>.(store方法)将集合中的键值对,写入文件中保存

 /*
@author :yinzhengjie
Blog:http://www.cnblogs.com/yinzhengjie/tag/Java%E5%9F%BA%E7%A1%80/
EMAIL:y1053419035@qq.com
*/ package cn.org.yinzhengjie.note6; import java.io.FileWriter;
import java.io.IOException;
import java.util.Properties;
import java.util.Set; public class PropertiesDemo {
public static void main(String[] args) throws IOException {
Properties p = new Properties();
//1>.使用setProperty方法存储键值对,其底层调用的是父类(Hashtable)的put方法,可以通过源码查看。
p.setProperty("Name", "yinzhengjie");
p.setProperty("Age", "18");
p.setProperty("Hobby", "Cosplay"); FileWriter fw = new FileWriter("yinzhengjie.properties");
//将键值对写入文件,使用集合的方法store传递字符输出流。
p.store(fw, "Add by yinzhengjie"); //注释信息不建议写中文,因为它会默认转换成Unicode编码,不易阅读! }
}

  执行之后,会生成新的文件,内容如下:

java基础-IO流对象之Properties集合

三.小试牛刀

  游戏试玩次数限制,定义一个文件,内容为:“times=5”,该参数表示玩家可以体验游戏的次数,当其值为0时实用结束。

 #Sat May 05 17:38:45 GMT+08:00 2018
times=5

yinzhengjie.properties 文件内容

 /*
@author :yinzhengjie
Blog:http://www.cnblogs.com/yinzhengjie/tag/Java%E5%9F%BA%E7%A1%80/
EMAIL:y1053419035@qq.com
*/ package cn.org.yinzhengjie.note6; import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.Properties; /*
* Properties不属于io流体系,java.util包下.
* 作为Hashtable的子类使用
*
*/
public class PropertiesDemo { public static void main(String[] args) throws Exception {
Properties p = new Properties();
p.load(new FileInputStream("yinzhengjie.properties")); String times = p.getProperty("times");
int i = Integer.parseInt(times); if(i <= 0){
System.out.println("试用结束");
}else{
System.out.println("当前是第 : " + (5 - i + 1) + "次试用,还剩: " + (i - 1) +" 次");
play();
p.setProperty("times", i - 1 + "");
p.store(new FileOutputStream("yinzhengjie.properties"), null);
}
} private static void play() {
System.out.println("正在玩游戏...");
} }