读书人

web开发惯用的东东备份-国际化i18n

发布时间: 2013-03-28 10:20:24 作者: rapoo

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")%>

?

读书人网 >Web前端

热点推荐