91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中Properties類的操作實例詳解

發布時間:2020-10-03 08:06:42 來源:腳本之家 閱讀:117 作者:lqh 欄目:編程語言

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,如下:

Java中Properties類的操作實例詳解

它提供了幾個主要的方法:

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的系統屬性

import java.util.Properties;

public class ReadJVM {
 public static void main(String[] args) {
  Properties pps = System.getProperties();
  pps.list(System.out);
 }
}

結果:

Java中Properties類的操作實例詳解

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

name=JJ
Weight=4444
Height=3333


public class getProperties {
 public static void main(String[] args) throws FileNotFoundException, IOException {
  Properties pps = new Properties();
  pps.load(new FileInputStream("Test.properties"));
  Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
  while(enum1.hasMoreElements()) {
   String strKey = (String) enum1.nextElement();
   String strValue = pps.getProperty(strKey);
   System.out.println(strKey + "=" + strValue);
  }
 }
}

3、一個比較綜合的實例

根據key讀取value

讀取properties的全部信息

寫入新的properties信息

//關于Properties類常用的操作
public class TestProperties {
 //根據Key讀取Value
 public static String GetValueByKey(String filePath, String key) {
  Properties pps = new Properties();
  try {
   InputStream in = new BufferedInputStream (new FileInputStream(filePath)); 
   pps.load(in);
   String value = pps.getProperty(key);
   System.out.println(key + " = " + value);
   return value;
   
  }catch (IOException e) {
   e.printStackTrace();
   return null;
  }
 }
 
 //讀取Properties的全部信息
 public static void GetAllProperties(String filePath) throws IOException {
  Properties pps = new Properties();
  InputStream in = new BufferedInputStream(new FileInputStream(filePath));
  pps.load(in);
  Enumeration en = pps.propertyNames(); //得到配置文件的名字
  
  while(en.hasMoreElements()) {
   String strKey = (String) en.nextElement();
   String strValue = pps.getProperty(strKey);
   System.out.println(strKey + "=" + strValue);
  }
  
 }
 
 //寫入Properties信息
 public static void WriteProperties (String filePath, String pKey, String pValue) throws IOException {
  Properties pps = new Properties();
  
  InputStream in = new FileInputStream(filePath);
  //從輸入流中讀取屬性列表(鍵和元素對) 
  pps.load(in);
  //調用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。 
  //強制要求為屬性的鍵和值使用字符串。返回值是 Hashtable 調用 put 的結果。
  OutputStream out = new FileOutputStream(filePath);
  pps.setProperty(pKey, pValue);
  //以適合使用 load 方法加載到 Properties 表中的格式, 
  //將此 Properties 表中的屬性列表(鍵和元素對)寫入輸出流 
  pps.store(out, "Update " + pKey + " name");
 }
 
 public static void main(String [] args) throws IOException{
  //String value = GetValueByKey("Test.properties", "name");
  //System.out.println(value);
  //GetAllProperties("Test.properties");
  WriteProperties("Test.properties","long", "212");
 }
}

結果:

Test.properties中文件的數據為:

#Update long name
#Sun Feb 23 18:17:16 CST 2014
name=JJ
Weight=4444
long=212
Height=3333

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

分宜县| 新民市| 晋城| 米脂县| 白朗县| 仲巴县| 西乡县| 襄城县| 嘉义市| 江川县| 明溪县| 大厂| 射阳县| 开江县| 离岛区| 九江县| 雅江县| 额济纳旗| 松潘县| 河源市| 陆丰市| 南华县| 桑日县| 积石山| 榆树市| 克山县| 义乌市| 洮南市| 宜春市| 长丰县| 噶尔县| 惠来县| 甘南县| 余庆县| 临武县| 方正县| 兴宁市| 嘉善县| 罗定市| 房产| 绥芬河市|