1,将a.properties转化为二进制资源文件(struts承认)
native2ascii a.properties b
内容为:
All.error.a=\u8f93\u5165\u4e3a\u7a7a
Pass.error.a=\u65e7\u5bc6\u7801\u4e0d\u5bf9
Pass.error.b=\u5bc6\u7801\u4e0d\u5339\u914d
2.将b放到src下,后缀为properties.在config文件配置其<message-resources parameter="b" null="false"/>
3.使用
if (oldpass.equals("") || newpass.equals("")|| conpass.equals("")) {
errors.add("fail_1", new ActionError("All.error.a"));
saveErrors(request, errors);
return mapping.findForward("fail");
4.打完收工,Easy~