码迷,mamicode.com
首页 > 编程语言 > 详细

Java保留两位小数的几种做法

时间:2020-03-31 14:24:15      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:保留   rac   precision   div   string   static   color   util   https   

页面或界面上展示的数据保留小数点后两位。

原文:https://www.iteye.com/blog/mouselearnjava-1961008 

为了达到这样的展示效果,本文列举了几个方法: 

1. 使用java.math.BigDecimal 
2. 使用java.text.DecimalFormat 
3. 使用java.text.NumberFormat 
4. 使用java.util.Formatter 
5. 使用String.format
 

public final class PrecisionTest {  
  
    private PrecisionTest() {  
    }  
  
    /** 
     * 使用BigDecimal,保留小数点后两位 
     */  
    public static String format1(double value) {  
  
        BigDecimal bd = new BigDecimal(value);  
        bd = bd.setScale(2, RoundingMode.HALF_UP);  
        return bd.toString();  
    }  
  
    /** 
     * 使用DecimalFormat,保留小数点后两位 
     */  
    public static String format2(double value) {  
  
        DecimalFormat df = new DecimalFormat("0.00");  
        df.setRoundingMode(RoundingMode.HALF_UP);  
        return df.format(value);  
    }  
  
    /** 
     * 使用NumberFormat,保留小数点后两位 
     */  
    public static String format3(double value) {  
  
        NumberFormat nf = NumberFormat.getNumberInstance();  
        nf.setMaximumFractionDigits(2);  
        /* 
         * setMinimumFractionDigits设置成2 
         *  
         * 如果不这么做,那么当value的值是100.00的时候返回100 
         *  
         * 而不是100.00 
         */  
        nf.setMinimumFractionDigits(2);  
        nf.setRoundingMode(RoundingMode.HALF_UP);  
        /* 
         * 如果想输出的格式用逗号隔开,可以设置成true 
         */  
        nf.setGroupingUsed(false);  
        return nf.format(value);  
    }  
  
    /** 
     * 使用java.util.Formatter,保留小数点后两位 
     */  
    public static String format4(double value) {  
        /* 
         * %.2f % 表示 小数点前任意位数 2 表示两位小数 格式后的结果为 f 表示浮点型 
         */  
        return new Formatter().format("%.2f", value).toString();  
    }  
  
    /** 
     * 使用String.format来实现。 
     *  
     * 这个方法其实和format4是一样的 
     */  
    public static String format5(double value) {  
  
        return String.format("%.2f", value).toString();  
    }  
}  

 

Java保留两位小数的几种做法

标签:保留   rac   precision   div   string   static   color   util   https   

原文地址:https://www.cnblogs.com/personsiglewine/p/12604684.html

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