java properties 符号_Java中Properties类知识的总结

一、Properties类与配置文件

注意:是一个Map集合,该集合中的键值对都是字符串。该集合通常用于对键值对形式的配置文件进行操作.

配置文件:将软件中可变的部分数据可以定义到一个文件中,方便以后更改.

优势: 提高代码的维护性。

二. JDK 中的 Properties 类 Properties 类存在于胞 Java.util 中,该类继承自 Hashtable ,它提供了几个主要的方法:

1. getProperty ( String key) , 用指定的键在此属性列表中搜索属性。也就是通过参数 key ,得到 key 所对应的 value。

2. load ( InputStream inStream) ,从输入流中读取属性列表(键和元素对)。通过对指定的文件(比如说上面的 test.properties 文件)进行装载来获取该文件中的所有键 - 值对。以供 getProperty ( String key) 来搜索。

3. setProperty ( String key, String value) ,调用 Hashtable 的方法 put 。他通过调用基类的put方法来设置 键 - 值对。

4. store ( OutputStream out, String comments) , 以适合使用 load 方法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素对)写入输出流。与 load 方法相反,该方法将键 - 值对写入到指定的文件中去。

5. clear () ,清除所有装载的 键 - 值对。该方法在基类中提供。

实例解读:

1、将配置文件中的数据通过流加载到集合中。

1 /*

2 * 将配置文件中的数据通过流加载到集合中。3 */

4 public static void loadFile() throwsIOException {5 //1,创建Properties(Map)对象

6 Properties prop = newProperties();7

8 //2.使用流加载配置文件。

9 FileInputStream fis = new FileInputStream("E:\\qq.txt");10

11 //3。使用Properties 对象的load方法将流中数据加载到集合中。

12 prop.load(fis);13

14 //遍历该集合

15 Set> entrySet =prop.entrySet();16 Iterator> it =entrySet.iterator();17 while(it.hasNext()) {18 Entry next =it.next();19 Object key =next.getKey();20 Object value =next.getValue();21 }22 //通过键获取指定的值

23 Object object = prop.get("jack");24 System.out.println(object);25

26 //通过键修改值 prop.setProperty("jack", "888888");27

28 //将集合中的数据写入到配置文件中。

29 FileOutputStream fos = new FileOutputStream("E:\\qq.txt");30

31 //注释:

32 prop.store(fos, "yes,qq");33

34 fos.close();35 fis.close();36

37 }

获取记录程序运行次数:

1 public classDemo2 {2 public static void main(String[] args) throwsIOException {3 int count = 0;4 Properties pro = newProperties();5

6 File file = new File("E:\\count.ini");7 FileInputStream fis = null;8 if (!file.exists()) {9 file.createNewFile();10 }11 fis = newFileInputStream(file);12 pro.load(fis);13 String str = pro.getProperty("count");14 if (str != null) {15 count =Integer.parseInt(str);16 }17 if (count == 3) {18 System.out.println("使用次数已到,请付费");19 System.exit(0);20 }21

22 count++;23 System.out.println("欢迎使用本软件" + "你已经使用了:" + count + " 次");24

25 pro.setProperty("count", count + "");26 FileOutputStream fos = new FileOutputStream(new File("E:\\count.ini"));27 pro.store(fos, "请保护知识产权");28

29 fis.close();30 fos.close();31

32 }33 }

额外注意:(Java代码)-----补充

注:(错)InputStream in = getClass().getResourceAsStream("资源Name");

InputStream 是接口,抽象的,又因为getClass()调用的时候默认省略了this!我们都知道,this是不能在static(静态)方法或者static块中使用的,原因是static类型的方法或者代码块是属于类本身的,不属于某个对象,而this本身就代表当前对象,而静态方法或者块调用的时候是不用初始化对象的。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值