Java Format - Java DecimalFormat .getMaximumIntegerDigits ()








Syntax

DecimalFormat.getMaximumIntegerDigits() has the following syntax.

public int getMaximumIntegerDigits()

Example

In the following code shows how to use DecimalFormat.getMaximumIntegerDigits() method.

import java.text.DecimalFormat;
/* w  w w .  ja  v a2  s. c o m*/
public class Main {
  public static void main(String[] argv) throws Exception {
    DecimalFormat format = new DecimalFormat();
    
    System.out.println(format.getMaximumIntegerDigits());

  }
}

The code above generates the following result.