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

格式化价格

阅读更多
/** 格式化价格**/
public static String formatPrice(Double price){
String result = "";
try {
DecimalFormat decimalFormat = new DecimalFormat("0.00");
result = decimalFormat.format(price);
}
catch (Exception e) {
}
return result;
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics