struts2格式化数目字

struts2格式化数字在message.properties配置文件中FormatNumeral{0,number,##}整数FormatNumeral2{0,num

struts2格式化数字
在message.properties配置文件中

FormatNumeral={0,number,##}   整数
FormatNumeral2={0,number,##.00}    保留两位小数
FormatNumeral3={0,number,###,###.00}   保留3,000,000.00这种格式



jsp页面:

<s:i18n name="Format"><s:text name="FormatNumeral3"><s:param value="#info.amount"/></s:text></s:i18n>