初次使用,从网上查的资料,知识点参考JDK API和博文http://lavasoft.blog.51cto.com/62575/184605(该博主写的清晰易懂)
自己在程序中的具体应用:
- ①src下建立文件test.properties,其中内容:name=google
- ②java程序中:
/** * 根据配置文件中的值,设置url路径 * @param propertiesFileName 配置文件的文件名 * @param itemName 读取的配置文件中的key的值 * @return url路径 */ public static String getPath(String propertiesFileName, String itemName){ String path = ""; try{ ResourceBundle resources = ResourceBundle.getBundle(propertiesFileName); String itemValue = resources.getString(itemName); if(("google").equals(itemValue.substring(0, 4))){ path="www.google.com.hk"; }else if(("baidu").equals(itemValue.substring(0, 4))){ path="www.baidu.com"; }else{ path="www.bing.com"; } } catch(Exception e){ path="www.bing.com"; e.printStackTrace(); } return path; }
③调用的时候,getPath(
"test.properties"
,
"name"
);返回:"
www.google.com.hk"
待续……
时间: 2024-10-04 23:24:28