Format Decimal with 0000000000E0 in Java

Description

The following code shows how to format Decimal with 0000000000E0.

Example


//from  w  w  w .j av  a  2  s  .  com
import java.text.DecimalFormat;

public class Main {
  public static void main(String[] argv) throws Exception {

    DecimalFormat formatter = new DecimalFormat("0000000000E0");
    String s = formatter.format(-1234.567); // -1234567000E-6
    System.out.println(s);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter