Struts2显示double价格格式0.00 Vincent

在国际化资源文件中加入:

format.money={0,number,0.00} 

jsp页面用struts标签:

<s:text name="format.money">
  <s:param name="value" value="priceName" />
</s:text>

输出格式:0.00

原文地址:https://www.cnblogs.com/lyxy/p/2963467.html