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;
/*from w w w . j av a2s. c o m*/
public class Main {
public static void main(String[] args) throws Exception {
NumberFormat numberFormat = NumberFormat.getCurrencyInstance(Locale.CANADA);
System.out.println(numberFormat.getCurrency().getDisplayName());
}
}