Java21-4 IO技术 ProPerties集合
2019-02-02 本文已影响0人
第二套广播体操
特点:
1.Hashtable子类,map集合中的方法都可以使用 所以存在键 值
2.该集合没有泛型。 属性列表中的每个键及其对应的值都是一个字符串。
3.他是一个可以持久化的属性集。键值可以储存到集合中,也可以存储到持久化设备上
键值的来源也可以来源于一个持久化设备
4.java设置文件语意性强 .properties后缀名
存储复杂数据常用为.xml
5.写入各项目自动刷新输出流 .store()方法返回后 输出流仍然保持打开状态
所以要自己手动关闭流
因为Properties从继承Hashtable时, put和putAll方法可应用于Properties对象。 强烈不鼓励使用它们,因为它们允许调用者插入其键或值不是Strings 。应该使用setProperty方法。 如果store或save方法在包含非String键或值的“受损害” Properties对象上调用,则调用将失败。 类似地,如果在包含非String密钥的“受损害” Properties对象上调用propertyNames或list方法的调用将失败。
示例1 将集合中的值存入set集合 及通过IO技术传入文件
public class Properties_Test1 {
public static void main(String[] args) throws IOException {
methodDemo();
}
public static void methodDemo() throws IOException {
Properties prop=new Properties();
// 设置键和值
prop.setProperty("zhangsan","20");
prop.setProperty("lisi","21");
//通过set集合存储键 通过getProperty(); 获取值 同Map
Set<String> set=prop.stringPropertyNames();
for (String s:set) {
prop.getProperty(s);
}
FileOutputStream fos=null;
// 持久化 存储到设备中 需要输出流 store(OutputStream out, String comments)
// 设置输出文件位置 和文件备注
prop.store(fos=new FileOutputStream("D:\\IO\\info.properties"),"person.info");
/* 写入各项目自动刷新输出流 .store()方法返回后 输出流仍然保持打开状态
所以要自己手动关闭流*/
fos.close();
}
}
示例2 读取文件流中数据
public class Properties_Test2 {
public static void main(String[] args) throws IOException {
methodDemo();
}
public static void methodDemo() throws IOException {
Properties prop=new Properties();
// 定义读取流和数据文件关联
File file=new File("D:\\IO\\info.properties");
FileInputStream fis=new FileInputStream(file);
// 将数据加载到Properties集合中
prop.load(fis);
// 键相同可以替换值
prop.setProperty("lisi","12");
// 这样只改变内存 还需要重新持久化
FileOutputStream fos=new FileOutputStream(file);
prop.store(fos,"");
// 将集合中的元素 存储到设备中
fis.close();
fos.close();
}
}
实验 定义一个功能记录程序运行次数 满5次以后 给出提示 试用结束 请注册
public class Test {
public static void main(String[] args) throws IOException {
boolean b=checkCount();
if (b)
run();
}
private static void run() {
System.out.println("程序运行");
}
private static boolean checkCount() throws IOException {
File file=new File("D:\\IO\\info1.Properties");
//创建文件
if(!file.exists())
file.createNewFile();
//记录每次存储的次数
int count=0;
Properties prop=new Properties();
FileInputStream fis=new FileInputStream(file);
//将数据加载到集合中
prop.load(fis);
// 获取键次数
String value=prop.getProperty("count");
// 如果count键的值不为空 则将值付给count
if (value!=null) {
count=Integer.parseInt(value);
}
//自增 自增后重新存储到集合中 第一次count=0 运行自增为1
count++;
// 将count的值重新写入
prop.setProperty("count",String.valueOf(count));
// 重新持久化
FileOutputStream fos=new FileOutputStream(file);
prop.store(fos,"cishu");
fis.close();
fos.close();
if (count>5) {
System.out.println("请注册");
return false;
}
return true;
}
}