Struts国际化通俗的讲就是让我们编写的界面能够支持多国的语言。
这里转载一篇博文:blog.csdn.net/haishu_zheng/article/details/50972431
有时候我们访问国际性的网站,发现有个语言切换的功能:若选择“简体中文”,页面显示语言为简体中文;若选择“繁体中文”,页面显示语言为繁体中文;若选择“英语”,页面显示语言为英语。
这是怎么实现的呢?靠配置文件。在这个配置文件里,通常选英语为基础语言,再与别的语言配对,以达到多种语言国际化的目的。
比如,简体中文国际化的配置文件中的内容是这样的:
China=中国
Province=广东
而繁体中文国际化的配置文件中的内容是这样的:
China=中國
Province=廣東
下面就修改上节课中的程序,来体会一下Struts的国际化流程。
1 将login.jsp中的“登录页面”改为“loginPage”,“用户名”改为“user”“密码”改为“pass”,改完后的login.jsp中的内容如下:
- <%@ page language="java" contentType="text/html; charset=GBK"
- pageEncoding="GBK"%>
- <%@taglib prefix="s" uri="/struts-tags"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <title><s:text name="loginPage" /></title>
- </head>
- <body>
- <s:form action="login">
- <s:textfield name="username" key="user" />
- <s:textfield name="password" key="pass" />
- <s:submit key="login" />
- </s:form>
- </body>
- </html>
2 welcome.jsp中的“成功页面”改为“succPage”,“登录成功!”改为“SuccTip”,并在s:text下面添加一行<s:param>${sessionScope.user}</s:param>
修改后的内容为:
- <%@ page language="java" contentType="text/html; charset=GBK"
- pageEncoding="GBK"%>
- <%@taglib prefix="s" uri="/struts-tags"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title><s:text name="succPage" /></title>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- </head>
- <body>
- <s:text name="succTip">
- <s:param>${sessionScope.user}</s:param>
- </s:text>
- <br />
- </body>
- </html>
这里s:param表示传参,参数的值由${sessionScope.user}决定,这里sessionScope.user表示会话中的user属性。这个user就是login.jsp中的key=”user”,由LoginAction.Java动态提供。
下面就在LoginAction.java中添加user的值。具体是在return “success”之前添加代码:
ActionContext.getContext().getSession().put("user" , getUsername());
添加完后,整个LoginAction.java中的代码为:
- package com.example.action;
- import com.opensymphony.xwork2.ActionContext;
- import com.opensymphony.xwork2.ActionSupport;
- public class LoginAction extends ActionSupport
- {
- private static final long serialVersionUID = 1L;
- private String username;
- private String password;
- public String getUsername()
- {
- return username;
- }
- public void setUsername(String username)
- {
- this.username = username;
- }
- public String getPassword()
- {
- return password;
- }
- public void setPassword(String password)
- {
- this.password = password;
- }
- //定义处理用户请求的execute方法
- public String execute() throws Exception
- {
- if (getUsername().equals("zheng") && getPassword().equals("123456") )
- {
- ActionContext.getContext().getSession()
- .put("user" , getUsername());
- return "success";
- }
- else
- {
- return "error";
- }
- }
- }
3 error.jsp中的“失败页面”改为“errorPage”,“登录失败”改为“failTip”,改完后的内容为:
- <%@ page language="java" contentType="text/html; charset=GBK"
- pageEncoding="GBK"%>
- <%@taglib prefix="s" uri="/struts-tags"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title><s:text name="errorPage"/></title>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- </head>
- <body>
- <s:text name="failTip"/>
- </body>
- </html>
<constant name="struts.custom.i18n.resources" value="zh"/>
添加后的struts.xml中的内容如下:
- <?xml version="1.0" encoding="GBK"?>
- <!DOCTYPE struts PUBLIC
- "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
- "http://struts.apache.org/dtds/struts-2.1.7.dtd">
- <!-- 指定Struts 2配置文件的根元素 -->
- <struts>
- <!-- 指定全局国际化资源文件 -->
- <constant name="struts.custom.i18n.resources" value="zh"/>
- <!-- 指定国际化编码所使用的字符集 -->
- <constant name="struts.i18n.encoding" value="GBK" />
- <!-- 所有的Action定义都应该放在package下 -->
- <package name="action" extends="struts-default">
- <action name="login" class="com.example.action.LoginAction">
- <!-- 定义三个逻辑视图和物理资源之间的映射 -->
- <result name="error">/error.jsp</result>
- <result name="success">/welcome.jsp</result>
- </action>
- </package>
- </struts>
上面value=”zh”指定了国际化资源文件的名称为zh,所以我们还应该在src目录下新建一个配置属性文件zh.properties,内容如下:
- loginPage=登录页面
- errorPage=错误页面
- succPage=成功页面
- failTip=对不起,您不能登录!
- succTip=欢迎,{0},您已经登录!
- User=用户名
- Pass=密码
- Login=登录
因为编码格式的原因(properties文件的编码格式为ISO-8859-1),上述的内容在properties文件中会显示成:
- loginPage=\u767B\u5F55\u9875\u9762
- errorPage=\u9519\u8BEF\u9875\u9762
- succPage=\u6210\u529F\u9875\u9762
- failTip=\u5BF9\u4E0D\u8D77\uFF0C\u60A8\u4E0D\u80FD\u767B\u5F55\uFF01
- succTip=\u6B22\u8FCE\uFF0C{0}\uFF0C\u60A8\u5DF2\u7ECF\u767B\u5F55\uFF01
- User=\u7528\u6237\u540D
- Pass=\u5BC6\u7801
- Login=\u767B\u5F55
5 配置完成后,运行程序。
右击login.jsp-->Run As-->Run on Server,运行结果为:
输入用户名“zheng”和密码“123456”,跳转到登录成功的页面:
退回登录页面,输入错误的用户名或密码,或什么都不输入,跳转到登录失败的页面: