jsp页面的国际化

Posted 放手一搏96

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp页面的国际化相关的知识,希望对你有一定的参考价值。

三个配置文件:

myproperties_en.properties是英文的:

myproperties_zh.properties是中文的:

 

 jsp页面的代码:

<%@ page language="java" import="java.util.*" pageEncoding="uTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE html>
<html>
<head>
<base href="<%=basePath%>">
<title>国际化(i18n)测试</title>
</head>

<body>
<!-- 第一种方式 -->
<fmt:setBundle basename="property.myproperties" scope="page" var="bundle"/>
<form action="">
<fmt:message key="username" bundle="${bundle}"/><input type="text" name="username"><br/>
<fmt:message key="password" bundle="${bundle}"/><input type="password" name="password"><br/>
<input type="submit" value="<fmt:message key="submit" bundle="${bundle}"/>">
</form>
<!-- 第二种方式 -->
<fmt:bundle basename="property.myproperties" >
<form action="">
<fmt:message key="username" /><input type="text" name="username"><br/>
<fmt:message key="password" /><input type="password" name="password"><br/>
<input type="submit" value="<fmt:message key="submit"/>">
</form>

</fmt:bundle>
</body>
</html>

运行结果:

 

以上是关于jsp页面的国际化的主要内容,如果未能解决你的问题,请参考以下文章

JSP-Runoob:JSP 国际化

java web中jsp常用标签

JSP 国际化

在过滤器中设置默认语言后,JSP i18n 分别在每个页面上工作

JSP 国际化

(二十七)JSP标签之核心标签