struts2标签格式化数字 编辑

<s:property value="%{formatDouble(price)}" />

Action:

//格式化数字显示
  public String formatDouble(double s){
       DecimalFormat fmt = new DecimalFormat("\u00A4##0.00");
       return fmt.format(s);
  }

其实我不喜欢用S标签,没办法,人家写的,要改

你可能感兴趣的:(struts2,Ognl)