創建一個自己的類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)