资源文件中的内容如下:
Welcome={0},欢迎来到中国{1}
1在JSP页面中输出带有占位符的国际化信息
<s:text name=”welcome”>
<s:param><s:property value=”realname”/></s:param>
<s:param>学习</s:param>
</s:text>
example:
<s:text name="welcome">
<s:param>liming</s:param>
<s:param>study</s:param>
</s:text> <br>
2
在Action类中获取带占位符的国际化信息,可以使用getText(String key , String[]args )
或getText(String aTextName,List args)
example:
ActionContext.getContext().put("message", this.getText("welcome",new String[]{"liming","study"}));