(Math.round(doubleValue*100))/100.0
有没有更好的方法将小数舍入到2位小数?
DecimalFormat format=new DecimalFormat("#.##"); System.out.println(format.format(doubleValue));