- 1、本文档共8页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Struts2–i18norlocalizationexample国际化实例(图文并茂,带源码)
Struts 2 – i18n or localization exampleA Struts 2 internationalizing(i18n), localization(i10n) or multi-lingua example to show the use of resource bundle to display the message from different languages. In this example, you will create a simple login screen, display the message from resource bundle via the Struts 2 UI components, and change the locale base on the selected language option.Download It – Struts2-i18-localization-Example.zip1. Project StructureThe project structure for this example2. Properties fileMake sure the properties file are named as country specified code.In some “non-Europe” or “non-English” like characters, you should always encode the content with native2ascii perties#Global messagesglobal.username = Usernameglobal.password = Passwordglobal.submit = Submitglobal_zh_CN.properties#Global messagesglobal.username = \u7528\u6237\u540dglobal.password = \u5bc6\u7801global.submit=\u63d0\u4ea4global_perties#Global messagesglobal.username = Nom dutilisateurglobal.password = Mot de passeglobal.submit = Soumettreglobal_perties#Global messagesglobal.username = Benutzernameglobal.password = Kennwortglobal.submit = EinreichenPlease read this Struts 2 resource bundle example to understand how Struts 2 search the properties file automatically.3. ActionTwo action classes, the LocaleAction is basically do nothing, and the LoginAction will do a simple validation and display the error message from resource bundle via getText().LocaleAmon.action;?importcom.opensymphony.xwork2.ActionSupport;?publicclassLocaleActionextendsActionSupport{?//business logicpublicString execute(){returnSUCCESS;}}LoginAction.javapackagecom.mkyong.user.action;?importcom.opensymphony.xwork2.ActionSupport;?publicclassLoginActionextendsActionSupport{?privateString username;privateString password;?//...getter and setter methods?//business logicpublicString execute(){returnSUCCESS;}?//simple validationpublicvoid validate(){if(.equals(getUsername())){addFieldError(username, getText(username.requ
文档评论(0)