Format Decimal with 0.######E0 in Java

Description

The following code shows how to format Decimal with 0.######E0.

Example


/*from w w  w . j ava 2s . co  m*/
import java.text.DecimalFormat;

public class Main {

  public static void main(String args[]) {

    System.out.println(new DecimalFormat("0.######E0").format(12345));

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter