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.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=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 }
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 2014 name=JJ Weight=4444 long=212 Height=3333
相關推薦
Java中Properties類的操作
文件中 配置文件 所有 技術分享 set nbsp str 宋體 java Java中有個比較重要的類Properties(Java.util.Properties),主要用於讀取Java的配置文件,就是像讀取數據庫賬號密碼一樣,其配置文件常為.properties文件,格
java 中properties 類讀取k-v配置文件
.class void tput iter 讀取配置文件 絕對路徑 getprop stream 源配置 properties 讀取的配置文件key和values都是string 類型 package com.bjsxt.others.pro; import java
java中Properties類及讀取properties中屬性值
key ioe failed .cn pre new ava 進行 html 在項目的應用中,經常將一些配置放入properties文件中,在代碼應用中讀取properties文件,就需要專門的類Properties類,通過這個類可以進行讀取。 深入理解和學習的
Java中檔案操作
java提供了一些實現類對檔案進行操作 File 對具體檔案(目錄)進行抽象表示。File類只用於表示檔案或者目錄的資訊(名稱、大小),不能用於檔案內容的訪問。 file類的方法比較多,以一個例項演示常用的幾個API。 import java.io.F
java中Properties理解
屬性物件是雜湊表的子類 不像地圖鍵值對設定鍵和值的屬性; 例如:定義地圖需要 Map<string,string> map=new Map <string,string>(); 而化子性質直接定義物件,且他的鍵和值都是字串型別的 Propert
java中bit操作常用技巧
1. bit:位 一個二進位制資料0或1,是1bit; 2. byte:位元組 儲存空間的基本計量單位,如:MySQL中定義 VARCHAR(45) 即是指 45個位元組; 1 byte = 8 bit 3. 一個英文字元佔一個位元組;
java中properties配置檔案的用法
一、新建properties檔案 在src檔案下new一個file,命名為XXX.properties 二、編寫配置檔案 在properties的格式下,新增名值對的方式就不說了,說說在source格式下新增名值對的方式注意事項 1、名用大寫比較規範 2、=兩邊別打空格
java中properties檔案的使用
properties檔案的使用 properties檔案顧名思義,屬性檔案,從它的名稱中直觀的理解就是,它應該是可以表示某些屬性, 是的,可以在它裡面定義一些欄位,這將不需要我們在程式碼中書寫,這就可以將這些資訊從程式碼中分 離出來了,很方便。我是在編寫資料庫程式碼的過程中接
java中Properties有什麼用,舉例說明?
馬克-to-win:Properties裡面存著也是鍵值對,而且它更方便java對配置檔案,字串的操作, 例:3.9.1 import java.util.*; public class TestMark_to_win { public static void main(String args[]) { Pr
Java中Properties物件的使用
Properties是Java中jdk自帶的一個物件 import java.util.Properties; 我們可以直接將字尾為properties的檔案變為Properties物件,然後通過Porperties物件中的 public synchronized O
MongoDB學習筆記(三) java中如何操作MongoDB
1. mongoDB對Java支援的驅動包 驅動包下載地址:http://repo1.maven.org/maven2/org/mongodb/mongo-java-driver/ mongoDB對Java的相關支援、技術:http://www.mongodb.org/di
log4j的使用與java中properties配置檔案載入
日誌是我們在寫程式碼中經常會用到的,程式出錯了我們也需要去檢視日誌來調錯,對於像我們這一些新人來說,怎麼去使用日誌就比較陌生,下面我將我學習的過程分享一下: 1.需要找到一個log4j包,我使用的是log4j-1.2.15.jar。放在工程lib資料夾下 2.新建一
JAVA中檔案操作大全
一.獲得控制檯使用者輸入的資訊/**//** *//**//**獲得控制檯使用者輸入的資訊 * @return * @throws IOException */ public String getInputMessage() throws IOException......{
Java中String操作
字串操作 ------------建立字串-------------- new String() new String(char
Java中陣列操作 java.util.Arrays 類常用方法的使用
任何一門程式語言,陣列都是最重要和常用的資料結構之一,但不同的語言對陣列的構造與處理是不盡相同的。 Java中提供了java.util.Arrays 類能方便地運算元組,並且它提供的所有方法都是靜態的。下面介紹一下Arrays類最常用的幾個方法。 1. 陣列排序 Arrays工具類提供了一個sor
File類的特點?如何建立File類物件?Java中如何操作檔案內容,什麼是Io流Io流如何讀取和寫入檔案?位元組緩衝流使用原則?
重難點提示 學習目標 1、能夠了解File類的特點(存在的意義,構造方法,常見方法) 2、能夠了解什麼是IO流以及分類(IO流的概述以及分類)
Java中的Properties操作
一、Java Properties類 Java中有個比較重要的類Properties(Java.util.Properties),主要用於讀取Java的配置檔案,各種語言都有自己所支援的配置檔案,配置檔案中很多變數是經常改變的,這樣做也是為了方便使用者,讓使用者能夠脫離程式本身去修改相關的變數設定。像P
關於Java中的*.properties的操作
只給出具體程式碼,覺得有用的可以參考一下 /** * 流處理工具類 * @author Shmily */ public class StreamUtils { private static
java中操作properties檔案
private String loadSysPath(){ String temp = "./cluster/siteId/conf/netMap.properties"; if(temp.indexOf("siteId")!=-1){ String siteId=
Java中二維數組的操作
ocl 繼續 print nbsp ati sta 編寫 sys src //1.二維數組的定義 //2.二維數組的內存空間 //3.不規則數組 輸出要放在循環裏面,放在外面就報錯了 打debug確定二維數組的關系