Set the multiple of the exponent by the number of #'s to the left of the decimal point in Java

Description

The following code shows how to set the multiple of the exponent by the number of #'s to the left of the decimal point.

Example


// www .j  av a  2s. c om
import java.text.DecimalFormat;

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

    DecimalFormat formatter = new DecimalFormat("#E0"); // exponent can be any
                                                        // value
    String s = formatter.format(-1234.567); 
    System.out.println(s);
    
    s = formatter.format(-.1234567); 
    System.out.println(s);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter