Format symbol %g in Java

Description

The following code shows how to format symbol %g.

Example


/*  w  w  w  .j  a  v  a2 s . c  o  m*/
import java.util.*; 
 
public class Main { 
  public static void main(String args[]) { 
    Formatter fmt = new Formatter(); 
 
    for(double i=1000; i < 1.0e+10; i *= 100) { 
      fmt.format("%g ", i); 
      System.out.println(fmt); 
    } 
 
  } 
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter