小编典典

将浮点数格式化为 n 位小数

all

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

.


阅读 63

收藏
2022-06-06

共1个答案

小编典典

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

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

文档

2022-06-06