Java Format - Java NumberFormat .getIntegerInstance ()








Syntax

NumberFormat.getIntegerInstance() has the following syntax.

public static final NumberFormat getIntegerInstance()

Example

In the following code shows how to use NumberFormat.getIntegerInstance() method.

import java.text.NumberFormat;

public class Main {
  public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getIntegerInstance();
    System.out.println(numberFormat.getMaximumFractionDigits());
  }
}

The code above generates the following result.