`
minwave
  • 浏览: 10781 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

千位符

 
阅读更多

JAVA 千位分隔符(数字格式化输出时常用)
public class GetIntFormat {
public static String intFormat(String money) {
  BigDecimal bd = new BigDecimal(money);
  DecimalFormat df = new DecimalFormat(",###,###.00");
  return df.format(bd);
}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics