Java BigDecimal.toPlainString()

Syntax

BigDecimal.toPlainString() has the following syntax.

public String toPlainString()

Example

In the following code shows how to use BigDecimal.toPlainString() method.


/*from  w  w  w  .j av  a 2s.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.





















Home »
  Java Tutorial »
    java.math »




BigDecimal
BigInteger