当前位置:编程学习 > JS >>

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 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,