Format Decimal with 000E00 in Java

Description

The following code shows how to format Decimal with 000E00.

Example


//ww w .ja  v  a 2 s.c  om
import java.text.DecimalFormat;

public class Main {
  public static void main(String[] argv) throws Exception {
    DecimalFormat formatter = new DecimalFormat("000E00");

    String s = formatter.format(-1234.567); // -123E01
    System.out.println(s);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter