BigDecimal.doubleValue() has the following syntax.
public double doubleValue()
In the following code shows how to use BigDecimal.doubleValue() method.
// ww w . j a va 2s . c o m import java.math.BigDecimal; public class Main { public static void main(String[] args) { BigDecimal bg = new BigDecimal("1234"); // assign the converted value of bg to d Double d = bg.doubleValue(); System.out.println(d); } }
The code above generates the following result.