实现四舍五入小数点后两位
A=8.235;
Double.parse(String.Format(“{0:n2}”,a));
Double.parse(String.Format(“{0:0.00}”,a));