【发布时间】:2011-07-08 22:12:57
【问题描述】:
我需要将浮点数格式化为“n”个小数位。
正在尝试 BigDecimal,但返回值不正确...
public static float Redondear(float pNumero, int pCantidadDecimales) {
// the function is call with the values Redondear(625.3f, 2)
BigDecimal value = new BigDecimal(pNumero);
value = value.setScale(pCantidadDecimales, RoundingMode.HALF_EVEN); // here the value is correct (625.30)
return value.floatValue(); // but here the values is 625.3
}
我需要返回一个带有我指定的小数位数的浮点值。
我需要Float 值返回而不是Double
.
【问题讨论】:
标签: java android floating-point numbers format