BigDecimal.divide(BigDecimal divisor, RoundingMode roundingMode) has the following syntax.
public BigDecimal divide(BigDecimal divisor, RoundingMode roundingMode)
In the following code shows how to use BigDecimal.divide(BigDecimal divisor, RoundingMode roundingMode) method.
/* w ww . java2 s.c o m*/ import java.math.BigDecimal; import java.math.RoundingMode; public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal("16"); BigDecimal bg2 = new BigDecimal("3"); // divide bg1 with bg2 rounding up BigDecimal bg3 = bg1.divide(bg2, RoundingMode.UP); System.out.println(bg3); } }
The code above generates the following result.