web开发常用的东东备份-国际化i18n
<%@ page import="java.util.Locale"%>
<i18n:bundle baseName="com.peter.conf.lang" id="bundle" locale="${locale}" />
<%
?if (null == session.getAttribute("locale")) {
??session.setAttribute("locale", Locale.SIMPLIFIED_CHINESE);
%>
<i18n:bundle baseName="com.peter.conf.lang" id="bundle" locale="${locale}" />
<%
?}
%>
在com.peter.conf包下需存在lang_zh_CN.properties的文件
?
使用国际化的输出
<%=bundle.getString("app_name")%>
?