public class configutil
static catch (configurationexception ex)
}/**
* 獲取string引數
** @param key
* @return
*/public static string getstring(string key)
/*** 獲取string陣列引數
** @param key
* @return
*/public static string getstringarray(string key)
/*** 獲取integer引數
** @param key
* @return
*/public static integer getinteger(string key)
/*** 獲取double引數
** @param key
* @return
*/public static double getdouble(string key)
/*** 獲取long引數
** @param key
* @return
*/public static long getlong(string key)
/*** 新增或修改引數
** @param key
* @param value
*/public static void setproperty(string key, object value)
}
//方法二: 配置檔案使用resourcebundle讀取
resourcebundle rb = resourcebundle.getbundle("conf");
string name = rb.getstring("name");
person person = (person)class.forname(name).newinstance();
system.out.println(person);
//方法三: 輸入流
/********************* 讀取properties檔案 ***************************/
public properties getproperties()
讀取配置檔案
類載入器 1 直接用class.forname 類的路徑名 class.forname com.hsf.classloader.classloader 2 用classloder 類載入器 inputstream in classloader.getsystemresourceasstream aa...
讀取配置檔案並讀取檔案
配置檔案 url users z ten documents name myfile.txt url是讀寫檔案的檔案位址,name是讀寫檔案的檔名稱 fileinputstream is null try catch filenotfoundexception e2 properties pt ne...
C 讀取配置檔案
1 首先引入標頭檔案 include 2 獲取應用程式的當前路徑 char buf 1000 getcurrentdirectory 1000,buf 得到當前工作路徑3 獲取配置檔案的路徑 char path 1024 definesysconfig config.ini sprintf path...