Java中的Properties类详解Properties配置文件
1.Properties类是什么?
Properties(Java.util.Properties),该类主要用于读取Java的配置文件,不同的编程语言有自己所支持的配置文件,配置文件中很多变量是经常改变的,为了方便用户的配置,能让用户够脱离程序本身去修改相关的变量设置。就像在Java中,其配置文件常为.properties文件,是以键值对的形式进行参数配置的。
3.常用的方法
getProperty(String key) 在此属性列表中搜索具有指定键的属性。如果在此属性列表中找不到该键,则会检查默认属性列表及其默认值(递归)。如果未找到该属性,则该方法返回默认值参数。
list(PrintStream out) 将此属性列表打印到指定的输出流。此方法对于调试很有用。
load(InputStream inStream) 从输入字节流中读取属性列表(键和元素对)。输入流采用加载(Reader)中指定的简单的面向行的格式,并假定使用ISO 8859-1字符编码;即每个字节是一个Latin1字符。不在Latin1中的字符和某些特殊字符在使用Unicode转义符的键和元素中表示。 此方法返回后,指定的流仍保持打开状态。
setProperty(String key, String value) 调用 Hashtable 的方法 put 。他通过调用基类的put方法来设置 键值对。
store(OutputStream out, String comments) 将此Properties表中的此属性列表(键和元素对)以适合使用load(InputStream)方法加载到Properties表的格式写入输出流。 此Properties方法不会写出此Properties表的defaults表中的属性(如果有)。
storeToXML(OutputStream os, String comment, String encoding) 使用指定的编码发出表示此表中包含的所有属性的XML文档。
clear() 清除此哈希表,使其不包含任何键。
stringPropertyNames() 返回此属性列表中的一组键,其中键及其对应的值是字符串,如果尚未从主属性列表中找到相同名称的键,则包括默认属性列表中的不同键。键或键不是String类型的属性将被省略。
————————————————
1.Properties类与Properties配置文件
Properties类继承自Hashtable类并且实现了Map接口,也是使用一种键值对的形式来保存属性集。不过Properties有特殊的地方,就是它的键和值都是字符串类型。
2.Properties中的主要方法
(1)load(InputStream inStream)
这个方法可以从.properties属性文件对应的文件输入流中,加载属性列表到Properties类对象。如下面的代码:
-
Properties pro = new Properties();
-
//使用类加载机制,读取配置文件;
-
static InputStream is=BaseDao.class.getClassLoader().getResourceAsStream("db.properties");
-
pro.load(in);
-
in.close();
(2)store(OutputStream out, String comments)
这个方法将Properties类对象的属性列表保存到输出流中。如下面的代码:
-
FileOutputStream oFile = new FileOutputStream(file, "a.properties");
-
pro.store(oFile, "Comment");
-
oFile.close();
如果comments不为空,保存后的属性文件第一行会是#comments,表示注释信息;如果为空则没有注释信息。
注释信息后面是属性文件的当前保存时间信息。
(3)getProperty/setProperty
这两个方法是分别是获取和设置属性信息。
3.代码实例
属性文件a.properties如下:
-
name=root
-
pass=liu
-
key=value
读取a.properties属性列表,与生成属性文件b.properties。代码如下:
-
1 import java.io.BufferedInputStream;
-
2 import java.io.FileInputStream;
-
3 import java.io.FileOutputStream;
-
4 import java.io.InputStream;
-
5 import java.util.Iterator;
-
6 import java.util.Properties;
-
7
-
8 public class PropertyTest {
-
9 public static void main(String[] args) {
-
10 Properties prop = new Properties();
-
11 try{
-
12 //读取属性文件a.properties
-
13 InputStream in = new BufferedInputStream (new FileInputStream("a.properties"));
-
14 prop.load(in); ///加载属性列表
-
15 Iterator<String> it=prop.stringPropertyNames().iterator();
-
16 while(it.hasNext()){
-
17 String key=it.next();
-
18 System.out.println(key+":"+prop.getProperty(key));
-
19 }
-
20 in.close();
-
21
-
22 ///保存属性到b.properties文件
-
23 FileOutputStream oFile = new FileOutputStream("b.properties", true);//true表示追加打开
-
24 prop.setProperty("phone", "10086");
-
25 prop.store(oFile, "The New properties file");
-
26 oFile.close();
-
27 }
-
28 catch(Exception e){
-
29 System.out.println(e);
-
30 }
-
31 }
-
32 }
文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。
原文链接:aaaedu.blog.csdn.net/article/details/106224850
- 点赞
- 收藏
- 关注作者
评论(0)