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配置
中文|English
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里还需要配置");