一直没想到,大名鼎鼎的java,竟然没有直接的能指定精确度的四舍五入的方法,要想达到此目的,还是得靠自己解决,简单点的如用如下方法:
public double round(double value){
return Math.round(value*100)/100.0;
}