Java配置properties文件的加載和讀取方法 – JAVA編程語言程序開發技術文章

創建一個自己的類SystemProperties ,類中有以下屬性:
private static SystemProperties ref; // 為瞭能創建單例模式
    private java.util.Properties prop = null;

private SystemProperties() throws IOException {
    prop = new java.util.Properties();   //創建一個Properties 類的引用
    prop.load(SystemProperties.class.getResourceAsStream(“/jbilling.properties”)); //加載配置文件
   
}

獲取配置文件:String retValue = prop.getProperty(key);// key為配置文件中的名稱,配置文件如:key=value

java.util.Properties中常用的方法有:

getProperties(String key)

getProperties(String key, String defaultValue)

load(InputStream inStream)

loadFromXML(InputStream inStream)

setProperties(String key, String value)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *