方法1:
double d = Math.random();String temp = String.format("%.2f",d);//返回值为String
方法2:
double d = Math.random();DecimalFormat df = new DecimalFormat("0.00");df.format(d);//返回值为String
问题1:Java浮点数如何保留小数点后两位
原文:https://www.cnblogs.com/chendejian/p/12984724.html