关于数字千分位和带两位小数的显示

这篇博客介绍了如何使用Java的DecimalFormat类来格式化数字,使其显示为带有千分位分隔符并精确到小数点后两位的方式。提供了fmtMicrometer方法的实现,根据输入数字的小数部分长度动态调整格式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

[java] view plain copy
String str = DecimalFormat.getNumberInstance().format(1245600000);  
[java] view plain copy
  
[java] view plain copy
DecimalFormat df = new DecimalFormat("0.00");  
[java] view plain copy
  
[java] view plain copy
  
[java] view plain copy
<span style="font-family:Arial, Helvetica, sans-serif;">  /**</span>  
[java] view plain copy
  
[java] view plain copy
 * 格式化数字为千分位显示 要格式化的数字  
 * @param  
 * @return  
 */  
public static String fmtMicrometer(String text)  
{  
    DecimalFormat df = null;  
    if(text.indexOf(".") > 0)  
    {  
        if(text.length() - text.indexOf(".")-1 == 0)  
        {  
            df = new DecimalFormat("###,##0.00");//0.00  
        }else if(text.length() - text.indexOf(".")-1 == 1)  
        {  
            df = new DecimalFormat("###,##0.00");//0.00  
        }else  
        {  
            df = new DecimalFormat("###,##0.00");//0.00  
        }  
    }else  
    {  
        df = new DecimalFormat("###,##0.00");//0.00  ###,##0  
    }  
    double number = 0.00;  
    try {  
        number = Double.parseDouble(text);  
    } catch (Exception e) {  
        number = 0.00;  
    }  
    return df.format(number);  
}  
  
  
* public static String fmtMicrometer(String text)  
{  
    DecimalFormat df = null;  
    if(text.indexOf(".") > 0)  
    {  
        if(text.length() - text.indexOf(".")-1 == 0)  
        {  
            df = new DecimalFormat("###,##0.");//0.00  
        }else if(text.length() - text.indexOf(".")-1 == 1)  
        {  
            df = new DecimalFormat("###,##0.0");//0.00  
        }else  
        {  
            df = new DecimalFormat("###,##0.00");//0.00  
        }  
    }else  
    {  
        df = new DecimalFormat("###,##0");//0.00  ###,##0  
    }  
    double number = 0.0;  
    try {  
        number = Double.parseDouble(text);  
    } catch (Exception e) {  
        number = 0.0;  
    }  
    return df.format(number);  
}*/  



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值