Java Format - Java NumberFormat .getCurrencyInstance (Locale inLocale)








Syntax

NumberFormat.getCurrencyInstance(Locale inLocale) has the following syntax.

public static NumberFormat getCurrencyInstance(Locale inLocale)

Example

In the following code shows how to use NumberFormat.getCurrencyInstance(Locale inLocale) method.

import java.text.NumberFormat;
import java.util.Locale;

public class Main {
  public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getCurrencyInstance(Locale.CANADA);
    System.out.println(numberFormat.getCurrency().getDisplayName());
  }
}

The code above generates the following result.