首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Struts2 S标签 数目字格式化成金额输出

2013-01-23 
Struts2 S标签 数字格式化成金额输出JSP: s:property value%{formatDouble(price)} / Action: //式化

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);

  }

 

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

热点排行