Struts2 S标签 数字格式化成金额输出
程序员文章站
2022-07-02 20:16:50
JSP:
Action:
//格式...
JSP:
<s:property value="%{formatDouble(price)}" />
Action:
//格式化数字显示
public String formatDouble(double s){
DecimalFormat fmt = new DecimalFormat("\u00A4##0.00");
return fmt.format(s);
}