Struts2.0设置默认Locale
Locale currentLocale=? (Locale) session.get("WW_TRANS_I18N_LOCALE");
if(currentLocale==null){
//设置Locale实例
currentLocale = new Locale("zh","CN");
session.put("WW_TRANS_I18N_LOCALE",currentLocale);
?
}
发布时间: 2012-10-25 10:58:57 作者: rapoo
Struts2.0设置默认Locale
Locale currentLocale=? (Locale) session.get("WW_TRANS_I18N_LOCALE");
if(currentLocale==null){
//设置Locale实例
currentLocale = new Locale("zh","CN");
session.put("WW_TRANS_I18N_LOCALE",currentLocale);
?
}