一
java.text.DecimalFormat df = new java.text.DecimalFormat("#.##");
double d = 3.14159d;
System.out.println(df.format(d));
二
java.math.BigDecimal bd2 = new BigDecimal("3.14159265");
bd2 = bd.setScale(2, BigDecimal.ROUND_HALF_UP);
三
class Test1 {
public static void main(String[] args) {
double ret = convert(3.14159);
System.out.println(ret);
}
static double convert(double value) {
long l1 = Math.round(value * 100); // 四舍五入
double ret = l1 / 100.0; // 注意:使用 100.0 而不是 100
return ret;
}
}
四
double d = 13.4324;
d = ((int) (d * 100)) / 100;
我觉得第二种方法更好.
转自:http://www.cnblogs.com/sharewind/archive/2007/08/29/873802.html