ฉันพยายามปัดเศษ BigDecimal ให้เป็นทศนิยมสองตำแหน่ง
ฉันกำลังใช้
BigDecimal rounded = value.round(new MathContext(2, RoundingMode.CEILING));
logger.trace("rounded {} to {}", value, rounded);
แต่มันไม่ได้ทำสิ่งที่ฉันต้องการอย่างสม่ำเสมอ:
rounded 0.819 to 0.82
rounded 1.092 to 1.1
rounded 1.365 to 1.4 // should be 1.37
rounded 2.730 to 2.8 // should be 2.74
rounded 0.819 to 0.82
ฉันไม่สนใจตัวเลขที่สำคัญฉันแค่ต้องการทศนิยมสองตำแหน่ง ฉันจะทำสิ่งนี้กับ BigDecimal ได้อย่างไร หรือมีคลาส / ไลบรารีอื่นที่เหมาะสมกับสิ่งนี้มากกว่าหรือไม่?
9
หากคุณต้องการปัดเศษคุณจะต้องใช้ RoundingMode.HALF_UP
—
Gilbert Le Blanc