将浮点数格式设置为 n 个小数位

2022-08-31 05:47:04

我需要将浮点数格式化为“n”个小数位。

试图大十进制,但返回值不正确...

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
}

我需要返回一个浮点值,其中包含我指定的小数位数。

我需要值返回不是FloatDouble

.


答案 1

您也可以传递浮点值,并使用:

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

文档


答案 2

看看DecimalFormat。您可以轻松地使用它来获取一个数字并为其提供一组小数位数。

编辑示例