BigDecimal.divide(BigDecimal divisor) has the following syntax.
public BigDecimal divide(BigDecimal divisor)
In the following code shows how to use BigDecimal.divide(BigDecimal divisor) method.
/* ww w. j a v a2 s . c om*/ import java.math.BigDecimal; public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal("45"); BigDecimal bg2 = new BigDecimal("5"); BigDecimal bg3 = bg1.divide(bg2); // divide bg1 with bg2 System.out.println(bg3); } }
The code above generates the following result.