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);
?
}