BigDecimal.divide(BigDecimal divisor, MathContext mc) has the following syntax.
public BigDecimal divide(BigDecimal divisor, MathContext mc)
In the following code shows how to use BigDecimal.divide(BigDecimal divisor, MathContext mc) method.
//from ww w. j av a 2 s .c o m import java.math.BigDecimal; import java.math.MathContext; public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal("123456"); BigDecimal bg2 = new BigDecimal("3"); MathContext mc = new MathContext(2); BigDecimal bg3 = bg1.divide(bg2, mc); System.out.println(bg3); } }
The code above generates the following result.