Format Decimal as 00E00 in Java

Description

The following code shows how to format Decimal as 00E00.

Example


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

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

    DecimalFormat formatter = new DecimalFormat("00E00");
    String s = formatter.format(-1234.567);
    System.out.println(s);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter