Java将Float格式化为n个小数位

我需要将浮点数格式化为“ 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

回答:

你还可以传递float值,并使用:

String.format("%.2f", floatValue);

以上是 Java将Float格式化为n个小数位 的全部内容, 来源链接: utcz.com/qa/431912.html

回到顶部