首页 > 代码库 > java.util.ResourceBundle学习笔记

java.util.ResourceBundle学习笔记

初次使用,从网上查的资料,知识点参考JDK API和博文http://lavasoft.blog.51cto.com/62575/184605(该博主写的清晰易懂)

自己在程序中的具体应用:

  1. ①src下建立文件test.properties,其中内容:name=google
  2. ②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 = http://www.mamicode.com/resources.getString(itemName);"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"

待续……

java.util.ResourceBundle学习笔记