ฉันต้องการจัดรูปแบบทศนิยมเป็นทศนิยม "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
.
String.format(java.util.Locale.US,"%.2f", floatValue);