ActionContext ctx = ActionContext.getContext();
Session session2 = ActionContext.getContext().getSession();
Locale locale = null;
if (ZH_CN.equals(language))
{
locale = Locale.SIMPLIFIED_CHINESE;
setLanguageCookie(ZH_CN);
}
if (EN_US.equals(language))
{
locale = Locale.US;
setLanguageCookie(EN_US);
}
ctx.setLocale(locale);
session2.put("WW_TRANS_I18N_LOCALE", locale);
备注;个人记录;