一帘撰、國際化 讀取資源文件
private static final long serialVersionUID = -9217951614629363385L;
/**
* 系統(tǒng)語言環(huán)境洒琢,默認(rèn)為中文zh
*/
public static final String LANGUAGE = "zh";
/**
* 系統(tǒng)國家環(huán)境蔑水,默認(rèn)為中國CN
*/
public static final String COUNTRY = "CN";
private static Locale getLocale() {
Locale locale = new Locale(LANGUAGE, COUNTRY);
return locale;
}
/**
* 根據(jù)語言、國家陈哑、資源文件名和key名字獲取資源文件值
* @param baseName 資源文件名
* @param language 語言
* @param country 國家
* @param section key名字
* @return 值
*/
private static String getProperties(String baseName, String section) {
String retValue = "";
try {
Locale locale = getLocale();
ResourceBundle rb = ResourceBundle.getBundle(baseName, locale);
retValue = (String) rb.getObject(section);
} catch (Exception e) {
e.printStackTrace();
}
return retValue;
}
/**
* 通過key從資源文件讀取內(nèi)容
* @param fileName 資源文件名
* @param key 索引
* @return 索引對(duì)應(yīng)的內(nèi)容
*/
public static String getValue(String fileName,String key) {
return getProperties(fileName, key);
}
/**
* 獲取資源文件下所有的索引名
* @param baseName 資源文件名
* @return
*/
public static List<String> getKeyList(String baseName) {
Locale locale = getLocale();
ResourceBundle rb = ResourceBundle.getBundle(baseName,locale);
List<String> reslist = new ArrayList<String>();
Set<String> keyset = rb.keySet();
for (Iterator<String> it = keyset.iterator(); it.hasNext();) {
String lkey = it.next();
reslist.add(lkey);
}
return reslist;
}
/**
* 通過key從資源文件讀取內(nèi)容钻哩,并格式化
*
* @param fileName
* 資源文件名
*
* @param key
* 索引
*
* @param objs
* 格式化參數(shù)
*
* @return 格式化后的內(nèi)容
*/
public static String getValue(String fileName, String key, Object[] objs) {
String pattern = getValue(fileName, key);
String value = MessageFormat.format(pattern, objs);
return value;
}
public static void main(String[] args) {
System.out.println(getValue("resources.messages", "105", null));
//信息格式化娩梨,如果資源中有{}的參數(shù)則需要使用MessageFormat格式化秩彤,Object[]為傳遞的參數(shù)叔扼,數(shù)量根據(jù)資源文件中的{}個(gè)數(shù)決定
// System.out.println(getValue("resources.messages", "102", new Object[]{100,200}));
}
對(duì)代碼進(jìn)行封裝
throw new ExceptionResultInfo(resultInfo);
// 封裝后一行代碼
ResultUtil.throwExcepion(ResultUtil.createFail(Config.MESSAGE, 213, null));
// 分析 - 1.首先是拋出異常的方法
public static void throwExcepion(ResultInfo resultInfo) throws ExceptionResultInfo{
throw new ExceptionResultInfo(resultInfo);
}
// 2. 工具類 創(chuàng)建錯(cuò)誤結(jié)果
public static ResultInfo createFail(String fileName,int messageCode,Object[] objs){
String message=null;
if(objs == null){
message = ResourcesUtil.getValue(fileName, messageCode+"");
}else{
message = ResourcesUtil.getValue(fileName, messageCode+"",objs);
}
return new ResultInfo(ResultInfo.TYPE_RESULT_FAIL,messageCode,message);
}