zoukankan      html  css  js  c++  java
  • java 四舍五入 保留俩位小数

            public static void main(String[] args) {  
                String str="0";  
                BigDecimal bd = new BigDecimal(Double.parseDouble(str));  
                System.out.println(bd.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue());  
                System.out.println("=================");  
                 DecimalFormat df = new DecimalFormat("#.00");   
                 System.out.println(df.format(Double.parseDouble(str)));   
                 System.out.println("=================");  
                 System.out.println(String.format("%.2f", Double.parseDouble(str)));  
                 System.out.println("=================");  
                 NumberFormat nf = NumberFormat.getNumberInstance();   
                 nf.setMaximumFractionDigits(2);   
                 System.out.println(nf.format(Double.parseDouble(str)));   
            } 

  • 相关阅读:
    DIV+CSS笔记(二)
    DIV+CSS笔记(一)
    HTML基础笔记
    面向对象—封装—重载
    面向对象—封装
    面向对象—封装—people
    面向对象—封装—三角形
    权限修饰符—1
    权限修饰符—2(Father、Son)
    权限修饰符—3
  • 原文地址:https://www.cnblogs.com/ckaifeng/p/4998525.html
Copyright © 2011-2022 走看看