本文转自 http://www.cnblogs.com/nayitian/p/3214178.html
1. 功能
将程序中的double值精确到小数点后两位。可以四舍五入,也可以直接截断。
比如:输入12345.6789,输出可以是12345.68也可以是12345.67。至于是否需要四舍五入,可以通过参数来决定(RoundingMode.UP/RoundingMode.DOWN等参数)。
2. 实现代码
formatDouble1( ()Math.round(d*100)/100 formatDouble2( BigDecimal bg = BigDecimal(d).setScale(2 String formatDouble3(= nf.setMaximumFractionDigits(2 String formatDouble4(= DecimalFormat("#.00" String formatDouble5( String.format("%.2f" d = 12345.67890