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

Description

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

Example


//from  w w  w. j  a v  a2  s .  c  o 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