Struts2 S标签 数字格式化成金额输出
JSP:<s:property value="%{formatDouble(price)}" />Action://格式化数字显示public String formatDouble(double s){DecimalFormat fmt = new DecimalFormat("\u00A4##0.00");return fmt.format(s);}
补充:Web开发 , Jsp ,
JSP:<s:property value="%{formatDouble(price)}" />Action://格式化数字显示public String formatDouble(double s){DecimalFormat fmt = new DecimalFormat("\u00A4##0.00");return fmt.format(s);}
补充:Web开发 , Jsp ,