Java中Properties类的操作

来源:互联网 发布:手机淘宝切换账号登录 编辑:程序博客网 时间:2024/05/16 01:52

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 import java.util.Properties;2 3 public class ReadJVM {4     public static void main(String[] args) {5         Properties pps = System.getProperties();6         pps.list(System.out);7     }8 }
复制代码

结果:

 

2、随便新建一个配置文件(Test.properties)

name=JJWeight=4444Height=3333
复制代码
 1 public class getProperties { 2     public static void main(String[] args) throws FileNotFoundException, IOException { 3         Properties pps = new Properties(); 4         pps.load(new FileInputStream("Test.properties")); 5         Enumeration enum1 = pps.propertyNames();//得到配置文件的名字 6         while(enum1.hasMoreElements()) { 7             String strKey = (String) enum1.nextElement(); 8             String strValue = pps.getProperty(strKey); 9             System.out.println(strKey + "=" + strValue);10         }11     }12 }
复制代码


3、一个比较综合的实例

根据key读取value

读取properties的全部信息

写入新的properties信息

复制代码
 1 //关于Properties类常用的操作 2 public class TestProperties { 3     //根据Key读取Value 4     public static String GetValueByKey(String filePath, String key) { 5         Properties pps = new Properties(); 6         try { 7             InputStream in = new BufferedInputStream (new FileInputStream(filePath));   8             pps.load(in); 9             String value = pps.getProperty(key);10             System.out.println(key + " = " + value);11             return value;12             13         }catch (IOException e) {14             e.printStackTrace();15             return null;16         }17     }18     19     //读取Properties的全部信息20     public static void GetAllProperties(String filePath) throws IOException {21         Properties pps = new Properties();22         InputStream in = new BufferedInputStream(new FileInputStream(filePath));23         pps.load(in);24         Enumeration en = pps.propertyNames(); //得到配置文件的名字25         26         while(en.hasMoreElements()) {27             String strKey = (String) en.nextElement();28             String strValue = pps.getProperty(strKey);29             System.out.println(strKey + "=" + strValue);30         }31         32     }33     34     //写入Properties信息35     public static void WriteProperties (String filePath, String pKey, String pValue) throws IOException {36         Properties pps = new Properties();37         38         InputStream in = new FileInputStream(filePath);39         //从输入流中读取属性列表(键和元素对) 40         pps.load(in);41         //调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。  42         //强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。43         OutputStream out = new FileOutputStream(filePath);44         pps.setProperty(pKey, pValue);45         //以适合使用 load 方法加载到 Properties 表中的格式,  46         //将此 Properties 表中的属性列表(键和元素对)写入输出流  47         pps.store(out, "Update " + pKey + " name");48     }49     50     public static void main(String [] args) throws IOException{51         //String value = GetValueByKey("Test.properties", "name");52         //System.out.println(value);53         //GetAllProperties("Test.properties");54         WriteProperties("Test.properties","long", "212");55     }56 }
复制代码

结果:
Test.properties中文件的数据为:

#Update long name#Sun Feb 23 18:17:16 CST 2014name=JJWeight=4444long=212Height=3333
Java代码  收藏代码
  1. package com.web.connection;  
  2.   
  3. import java.io.IOException;  
  4. import java.io.InputStream;  
  5. import java.sql.Connection;  
  6. import java.sql.DriverManager;  
  7. import java.sql.SQLException;  
  8. import java.util.Properties;  
  9. import java.util.logging.Level;  
  10. import java.util.logging.Logger;  
  11.   
  12. public class Conn {  
  13.     private String fileName="/db.properties";//这里是指放在classes下,如果有包的话,前面加包名即可。例:/com/web/db.properties  
  14.     private String driver = "";  
  15.     private String url = "";  
  16.     private String username ="";  
  17.     private String password = "";  
  18.     Connection conn=null;  
  19.       
  20.   
  21.     public  Connection  getConn(){  
  22.         Properties p = new Properties();  
  23.         try {  
  24.             InputStream in = Conn.class.getResourceAsStream(fileName);//这里有人用new FileInputStream(fileName),不过这种方式找不到配置文件。有人说是在classes下,我调过了,不行。  
  25.             p.load(in);  
  26.             in.close();  
  27.             if(p.containsKey("driver")){  
  28.                 this.driver = p.getProperty("driver");  
  29.             }  
  30.             if(p.containsKey("url")){  
  31.                 this.url = p.getProperty("url");  
  32.             }  
  33.             if(p.containsKey("user")){  
  34.                 this.username = p.getProperty("user");  
  35.             }  
  36.             if(p.containsKey("password")){  
  37.                 this.password = p.getProperty("password");  
  38.             }  
  39.         } catch (IOException ex) {  
  40.             Logger.getLogger(Conn.class.getName()).log(Level.SEVERE, null, ex);  
  41.         }  
  42.         System.out.println(p.getProperty("driver"));  
  43.        try {  
  44.             Class.forName(this.driver);  
  45.             conn = DriverManager.getConnection(this.url,this.username,this.password);  
  46.         } catch (SQLException ex) {  
  47.             ex.printStackTrace();  
  48.             System.out.print("获取连接异常");  
  49.         } catch (ClassNotFoundException ex) {  
  50.             System.out.print("加载驱动出错");  
  51.             ex.printStackTrace();;  
  52.         }  
  53.         return conn;  
  54.     }  
  55. }  

网上文章常见的几种读取.properties文件的方式
1、使用java.util.Properties类的load()方法 示例:
Java代码  收藏代码
  1. InputStream in = lnew BufferedInputStream(new FileInputStream(name));   
  2. Properties p = new Properties();   
  3. p.load(in);  


2、使用java.util.ResourceBundle类的getBundle()方法 
示例:
Java代码  收藏代码
  1. ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());   


用ResourceBundle读取.properties文件可避免路径问题 
            我在jar里读取.properties文件时,总是找不到文件路径,后来用ResourceBundle读取.properties文件即可避免路径问题,代码如下: 
     

//process为文件名,切记不要加 .properties, URL是文件里的键名 
Java代码  收藏代码
  1.     ResourceBundle bundle = ResourceBundle.getBundle("com.ihandy.smsoc.app.process");  
  2.    String s = bundle.getString("URL");  
  3. System.out.println(s);  
  4. pURL = s;  



3、使用java.util.PropertyResourceBundle类的构造函数 
示例: 
Java代码  收藏代码
  1. InputStream in = new BufferedInputStream(new FileInputStream(name));   
  2. ResourceBundle rb = new PropertyResourceBundle(in);   


4、使用class变量的getResourceAsStream()方法 示例: 
Java代码  收藏代码
  1. InputStream in = 类名.class.getResourceAsStream(name);   
  2. Properties p = new Properties();   
  3. p.load(in);   

5、使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法 示例: 
Java代码  收藏代码
  1. InputStream in = 类名.class.getClassLoader().getResourceAsStream(name);   
  2. Properties p = new Properties();   
  3. p.load(in);   


6、使用java.lang.ClassLoader类的getSystemResourceAsStream()静态方法 示例: 
Java代码  收藏代码
  1. InputStream in = ClassLoader.getSystemResourceAsStream(name);   
  2. Properties p = new Properties();   
  3. p.load(in);   


7、Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法 示例: 
Java代码  收藏代码
  1. InputStream in = context.getResourceAsStream(path);   
  2. Properties p = new Properties();   
  3. p.load(in);   
0 0
原创粉丝点击