共两种方法:
方法1:
double x = 89.4545464654; DecimalFormat df = new DecimalFormat("0.00");//设置小数位数,"0.000" 就是保留三位小数 String y = df.format(x);//返回数据为 String 类型,结果为四舍五入后的值 System.out.println(y);
结果如下:
方法2:类似C的写法
double x = 89.4545464654; String y = String.format("%.3f",x);//返回值为String,结果为四舍五入后的值 System.out.println(y);
结果如下: