2个jar包: jakarta-oro.jar 和 commons-validator.jar
2个xml配置文件: validator-rules.xml 和 validation.xml
多个properties配置文件: ApplicatiomResources_en_US.properties,ApplicatiomResources_en_US.properties...
properties里面内容(jsp页面的内容都需要写进来):
login.title=test title
login.username=Username
login.password=Password
如果是中文,单击右键选择Properties,修改编码为utf-8
login.title=测试标题
login.username=用户名称
login.password=用户密码
struts-config配置
<span style="white-space:pre"> </span><message-resources parameter="com.amaker.struts.ApplicatiomResources"/>
<span style="white-space:pre"> </span><title><bean:message key="login.title"/></title>
<a href="/i18n.do?l=zh&c=CN">中文</a>|<a href="/i18n.do?l=en&c=US">English</a>
<bean:form action="/login">
<bean:message key="login.username"/>
</bean:form>
<action path="/i18n" type="com.amaker.struts.action.I18NAction"></action>
String l=request.getParameter("l");
String c=request.getParameter("c");
Locale locale=new Locale(l,c);
HttpSession session=request.getSession();
session.setAttribute(Globals.LOCALE_KEY,locale);
return mapping.findForward("跳转页面,在struts-config里还需要配置");