java 中Properties使用及 getResourceAsStream的用法

Java中getResourceAsStream的用法 java

首先,Java中的getResourceAsStream有如下幾種: 
1. Class.getResourceAsStream(String path) : path 不以’/'開頭時默認是今後類所在的包下取資源,以’/'開頭則是從 程序員

ClassPath根下獲取。其只是經過path構造一個絕對路徑,最終仍是由ClassLoader獲取資源。 app

2. Class.getClassLoader.getResourceAsStream(String path) :默認則是從ClassPath根下獲取,path不能以’/'開頭,最終是由 spa

ClassLoader獲取資源。 .net

3. ServletContext. getResourceAsStream(String path):默認從WebAPP根目錄下取資源,Tomcat下path是否以’/'開頭無所謂, code

固然這和具體的容器實現有關。 xml

4. Jsp下的application內置對象就是上面的ServletContext的一種實現。 對象

其次,getResourceAsStream 用法大體有如下幾種: blog

第一: 要加載的文件和.class文件在同一目錄下,例如:com.x.y 下有類me.class ,同時有資源文件myfile.xml 繼承

那麼,應該有以下代碼:

me.class.getResourceAsStream("myfile.xml");

第二:在me.class目錄的子目錄下,例如:com.x.y 下有類me.class ,同時在 com.x.y.file 目錄下有資源文件myfile.xml

那麼,應該有以下代碼:

me.class.getResourceAsStream("file/myfile.xml");

第三:不在me.class目錄下,也不在子目錄下,例如:com.x.y 下有類me.class ,同時在 com.x.file 目錄下有資源文件myfile.xml

那麼,應該有以下代碼:

me.class.getResourceAsStream("/com/x/file/myfile.xml");

總結一下,可能只是兩種寫法

第一:前面有 「   / 」

「 / 」表明了工程的根目錄,例如工程名叫作myproject,「 / 」表明了myproject

me.class.getResourceAsStream("/com/x/file/myfile.xml");

第二:前面沒有 「   / 」

表明當前類的目錄

me.class.getResourceAsStream("myfile.xml");

me.class.getResourceAsStream("file/myfile.xml");




1、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 (),清除全部裝載的 鍵 - 值對。該方法在基類中提供。

 

2、Java讀取Properties文件

    Java讀取Properties文件的方法有不少,詳見: Java讀取Properties文件的六種方法

可是最經常使用的仍是經過java.lang.Class類的getResourceAsStream(String name)方法來實現,以下能夠這樣調用:

InputStream in = getClass().getResourceAsStream("資源Name");做爲咱們寫程序的,用此一種足夠。

或者下面這種也經常使用:

InputStream in = new BufferedInputStream(new FileInputStream(filepath));

 

3、相關實例

下面列舉幾個實例,加深對Properties類的理解和記憶。

咱們知道,Java虛擬機(JVM)有本身的系統配置文件(system.properties),咱們能夠經過下面的方式來獲取。

一、獲取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 }
複製代碼

結果:

 

二、隨便新建一個配置文件(Test.properties)

name=JJ Weight=4444 Height=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 }
複製代碼


三、一個比較綜合的實例

根據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 2014 name=JJ Weight=4444 long=212 Height=3333
複製代碼
相關文章
相關標籤/搜索