java读取properties文件

来源:互联网 发布:剑三御姐捏脸数据下载 编辑:程序博客网 时间:2024/06/05 02:52

1.Properties类与Properties配置文件

  Properties类继承自Hashtable类并且实现了Map接口,也是使用一种键值对的形式来保存属性集。不过Properties有特殊的地方,就是它的键和值都是字符串类型。

2.Properties中的主要方法

(1)load(InputStream inStream)

   这个方法可以从.properties属性文件对应的文件输入流中,加载属性列表到Properties类对象如下面的代码:

Properties pro = new Properties();FileInputStream in = new FileInputStream("a.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=rootpass=liukey=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.properties13             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 }
下面1-4的内容是网上收集的相关知识,总结来说,就是如下几个知识点:
  1. 最常用读取properties文件的方法
  2. InputStream in = getClass().getResourceAsStream("资源Name");这种方式要求properties文件和当前类在同一文件夹下面。如果在不同的包中,必须使用:
  3. InputStream ins = this.getClass().getResourceAsStream("/cn/zhao/properties/testPropertiesPath2.properties");
  4. Java中获取路径方法
  5. 获取路径的一个简单实现
  6. 反射方式获取properties文件的三种方式

 

1 反射方式获取properties文件最常用方法以及思考:

Java读取properties文件的方法比较多,网上最多的文章是"Java读取properties文件的六种方法",但在Java应用中,最常用还是通过java.lang.Class类的getResourceAsStream(String name) 方法来实现,但我见到众多读取properties文件的代码中,都会这么干:

  

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

  

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

  

问题是:假如我不想让某个类有对象,那么我会将此类的默认构造方法设为私有,当然也不会写别的共有的构造方法。并且我这个类是工具类,都是静态的方法和变量,我要在静态块或者静态方法中获取properties文件,这个方法就行不通了。

  

那怎么办呢?其实这个类就不是这么用的,他仅仅是需要获取一个Class对象就可以了,那还不容易啊--               

取所有类的父类Object,用Object.class难道不比你的用你正在写类自身方便安全吗 ?呵呵,下面给出一个例子,以方便交流。        

     

[plain] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. import  java.util.Properties;    
  2. import  java.io.InputStream;    
  3. import  java.io.IOException;    
  4.   
  5. /**    
  6. * 读取Properties文件的例子    
  7. * File: TestProperties.java    
  8. * User: leizhimin    
  9. * Date: 2008-2-15 18:38:40    
  10. */     
  11. public   final   class  TestProperties {    
  12.      private   static  String param1;    
  13.      private   static  String param2;    
  14.   
  15.      static  {    
  16.         Properties prop =  new  Properties();    
  17.         InputStream in = Object. class .getResourceAsStream( "/test.properties" );    
  18.          try  {    
  19.             prop.load(in);    
  20.             param1 = prop.getProperty( "initYears1" ).trim();    
  21.             param2 = prop.getProperty( "initYears2" ).trim();    
  22.         }  catch  (IOException e) {    
  23.             e.printStackTrace();    
  24.         }    
  25.     }    
  26.   
  27.      /**    
  28.      * 私有构造方法,不需要创建对象    
  29.      */     
  30.      private  TestProperties() {    
  31.     }    
  32.   
  33.      public   static  String getParam1() {    
  34.          return  param1;    
  35.     }    
  36.   
  37.      public   static  String getParam2() {    
  38.          return  param2;    
  39.     }    
  40.   
  41.      public   static   void  main(String args[]){    
  42.         System.out.println(getParam1());    
  43.         System.out.println(getParam2());    
  44.     }    
  45. }   
  46.   
  47.      
  48.   
  49. 运行结果:  
  50.   
  51. 151    
  52. 152    

当然,把Object.class换成int.class照样行,呵呵,大家可以试试。

  

另外,如果是static方法或块中读取Properties文件,还有一种最保险的方法,就是这个类的本身名字来直接获取Class对象,比如本例中可写成TestProperties.class,这样做是最保险的方法

2 获取路径的方式:

[html] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. File fileB = new File( this .getClass().getResource( "" ).getPath());  
  2.   
  3.  System. out .println( "fileB path: " + fileB);   

2.2获取当前类所在的工程名:

[html] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. System. out .println("user.dir path: " + System. getProperty ("user.dir"))<span style="background-color: white;">3 获取路径的一个简单的Java实现</span>  
[java] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. /** 
  2.  
  3.      *获取项目的相对路径下文件的绝对路径 
  4.  
  5.      * 
  6.  
  7.      * @param parentDir 
  8.  
  9.      *目标文件的父目录,例如说,工程的目录下,有lib与bin和conf目录,那么程序运行于lib or 
  10.  
  11.      * bin,那么需要的配置文件却是conf里面,则需要找到该配置文件的绝对路径 
  12.  
  13.      * @param fileName 
  14.  
  15.      *文件名 
  16.  
  17.      * @return一个绝对路径 
  18.  
  19.      */  
  20.   
  21.     public static String getPath(String parentDir, String fileName) {  
  22.   
  23.         String path = null;  
  24.   
  25.         String userdir = System.getProperty("user.dir");  
  26.   
  27.         String userdirName = new File(userdir).getName();  
  28.   
  29.         if (userdirName.equalsIgnoreCase("lib")  
  30.   
  31.                 || userdirName.equalsIgnoreCase("bin")) {  
  32.   
  33.             File newf = new File(userdir);  
  34.   
  35.             File newp = new File(newf.getParent());  
  36.   
  37.             if (fileName.trim().equals("")) {  
  38.   
  39.                 path = newp.getPath() + File.separator + parentDir;  
  40.   
  41.             } else {  
  42.   
  43.                 path = newp.getPath() + File.separator + parentDir  
  44.   
  45.                         + File.separator + fileName;  
  46.   
  47.             }  
  48.   
  49.         } else {  
  50.   
  51.             if (fileName.trim().equals("")) {  
  52.   
  53.                 path = userdir + File.separator + parentDir;  
  54.   
  55.             } else {  
  56.   
  57.                 path = userdir + File.separator + parentDir + File.separator  
  58.   
  59.                         + fileName;  
  60.   
  61.             }  
  62.   
  63.         }  
  64.   
  65.    
  66.   
  67.         return path;  
  68.   
  69.     }  

4 利用反射的方式获取路径:

[java] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. InputStream ips1 = Enumeration . class .getClassLoader() .getResourceAsStream( "cn/zhao/enumStudy/testPropertiesPath1.properties" );  
  2.   
  3.           
  4.   
  5.  InputStream ips2 = Enumeration . class .getResourceAsStream( "testPropertiesPath1.properties" );  
  6.   
  7.           
  8.   
  9.  InputStream ips3 = Enumeration . class .getResourceAsStream( "properties/testPropertiesPath2.properties" );  
  10.    

 

中文乱码问题
  1. Properties prop=new Properties();         
  2. prop.load(new InputStreamReader(Client.class.getClassLoader().getResourceAsStream("config.properties"), "UTF-8"));     
0 0
原创粉丝点击