编程语言
首页 > 编程语言> > java-通过Struts2中的代码设置语言环境

java-通过Struts2中的代码设置语言环境

作者:互联网

在我的应用程序中,我必须根据在配置页面中选择的语言环境用户来显示内容.我没有使用浏览器的默认语言环境.

使用s:text时,它始终使用默认资源文件.

在Struts1中,我使用以下代码在过滤器中设置默认语言环境

session.setAttribute("org.apache.struts.action.LOCALE",locale);

如何在Struts2中动态设置用户选择的语言环境?

解决方法:

这为我工作:

String language = userLocale.substring(0, 2);
String country = userLocale.substring(3, 5);
Locale locale = new Locale(language, country);
ActionContext.getContext().setLocale(locale);
session.put(I18nInterceptor.DEFAULT_SESSION_ATTRIBUTE, locale);

其中userLocale的值格式为:fr_FR,资源文件名为resource_fr_FR.properties

标签:java,locale,struts2,internationalization,actioncontext
来源: https://codeday.me/bug/20191010/1884463.html