BigDecimal.toPlainString() has the following syntax.
public String toPlainString()
In the following code shows how to use BigDecimal.toPlainString() method.
// ww w.j a va 2 s. c o m import java.math.BigDecimal; import java.math.MathContext; public class Main { public static void main(String[] args) { MathContext mc = new MathContext(3); // 3 precision BigDecimal bg = new BigDecimal("1234E+4", mc); System.out.println("Plain string value of " + bg + " is " + bg.toPlainString()); } }
The code above generates the following result.