java中properties类的操作实例详解
知识学而不用,就等于没用,到真正用到的时候还得重新再学。最近在看几款开源模拟器的源码,里面涉及到了很多关于properties类的引用,由于java已经好久没用了,而这些模拟器大多用java来写,外加一些脚本语言python,perl之类的,不得已,又得重新拾起。本文通过看《java编程思想》和一些网友的博客总结而来,只为简单介绍properties类的相关操作。
一、java properties类
java中有个比较重要的类properties(java.util.properties),主要用于读取java的配置文件,各种语言都有自己所支持的配置文件,配置文件中很多变量是经常改变的,这样做也是为了方便用户,让用户能够脱离程序本身去修改相关的变量设置。像python支持的配置文件是.ini文件,同样,它也有自己读取配置文件的类configparse,方便程序员或用户通过该类的方法来修改.ini配置文件。在java中,其配置文件常为.properties文件,格式为文本文件,文件的内容的格式是“键=值”的格式,文本注释信息可以用"#"来注释。
properties类继承自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 (),清除所有装载的 键 - 值对。该方法在基类中提供。
二、java读取properties文件
java读取properties文件的方法有很多,详见: java读取properties文件的六种方法
但是最常用的还是通过java.lang.class类的getresourceasstream(string name)方法来实现,如下可以这样调用:
inputstream in = getclass().getresourceasstream("资源name");作为我们写程序的,用此一种足够。
或者下面这种也常用:
inputstream in = new bufferedinputstream(new fileinputstream(filepath));
三、相关实例
下面列举几个实例,加深对properties类的理解和记忆。
我们知道,java虚拟机(jvm)有自己的系统配置文件(system.properties),我们可以通过下面的方式来获取。
1、获取jvm的系统属性
1
2
3
4
5
6
7
8
|
import java.util.properties; public class readjvm { public static void main(string[] args) { properties pps = system.getproperties(); pps.list(system.out); } } |
结果:
2、随便新建一个配置文件(test.properties)
1
2
3
|
name=jj weight= 4444 height= 3333 |
1
2
3
4
5
6
7
8
9
10
11
12
|
public class getproperties { public static void main(string[] args) throws filenotfoundexception, ioexception { properties pps = new properties(); pps.load( new fileinputstream( "test.properties" )); enumeration enum1 = pps.propertynames(); //得到配置文件的名字 while (enum1.hasmoreelements()) { string strkey = (string) enum1.nextelement(); string strvalue = pps.getproperty(strkey); system.out.println(strkey + "=" + strvalue); } } } |
3、一个比较综合的实例
根据key读取value
读取properties的全部信息
写入新的properties信息
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
//关于properties类常用的操作 public class testproperties { //根据key读取value public static string getvaluebykey(string filepath, string key) { properties pps = new properties(); try { inputstream in = new bufferedinputstream ( new fileinputstream(filepath)); pps.load(in); string value = pps.getproperty(key); system.out.println(key + " = " + value); return value; } catch (ioexception e) { e.printstacktrace(); return null ; } } //读取properties的全部信息 public static void getallproperties(string filepath) throws ioexception { properties pps = new properties(); inputstream in = new bufferedinputstream( new fileinputstream(filepath)); pps.load(in); enumeration en = pps.propertynames(); //得到配置文件的名字 while (en.hasmoreelements()) { string strkey = (string) en.nextelement(); string strvalue = pps.getproperty(strkey); system.out.println(strkey + "=" + strvalue); } } //写入properties信息 public static void writeproperties (string filepath, string pkey, string pvalue) throws ioexception { properties pps = new properties(); inputstream in = new fileinputstream(filepath); //从输入流中读取属性列表(键和元素对) pps.load(in); //调用 hashtable 的方法 put。使用 getproperty 方法提供并行性。 //强制要求为属性的键和值使用字符串。返回值是 hashtable 调用 put 的结果。 outputstream out = new fileoutputstream(filepath); pps.setproperty(pkey, pvalue); //以适合使用 load 方法加载到 properties 表中的格式, //将此 properties 表中的属性列表(键和元素对)写入输出流 pps.store(out, "update " + pkey + " name" ); } public static void main(string [] args) throws ioexception{ //string value = getvaluebykey("test.properties", "name"); //system.out.println(value); //getallproperties("test.properties"); writeproperties( "test.properties" , "long" , "212" ); } } |
结果:
test.properties中文件的数据为:
1
2
3
4
5
6
|
#update long name #sun feb 23 18 : 17 : 16 cst 2014 name=jj weight= 4444 long = 212 height= 3333 |
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://www.cnblogs.com/bakari/p/3562244.html