码迷,mamicode.com
首页 > 其他好文 > 详细

DecimalFormat 格式化金额

时间:2016-09-01 15:58:17      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

 

DecimalFormat 格式化金额,是使用现有API还是自己写util方法?
public static void main(String[] args) throws Exception {
        DecimalFormat df = new DecimalFormat("#.00");
        String re=df.format(23.8);
        System.out.println(re);
        
        String ss="23";
        System.out.println(ensureDecimalPlaceOfMoney(ss));
    }
    public static String ensureDecimalPlaceOfMoney(String money){
        if(money==null)
            return null;
        if(money.indexOf(".")!=-1){
            String decimalPlace=money.substring(money.indexOf(".")+1, money.length());
            if(decimalPlace.length()==1){
                money+="0";
            }
        }else{
            money+=".00";
        }
        return money;
    }

 

DecimalFormat 格式化金额

标签:

原文地址:http://www.cnblogs.com/yuanye007/p/5829889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!