Java Format - Java NumberFormat .setCurrency (Currency currency)








Syntax

NumberFormat.setCurrency(Currency currency) has the following syntax.

public void setCurrency(Currency currency)

Example

In the following code shows how to use NumberFormat.setCurrency(Currency currency) method.

/*  ww  w.j av  a  2  s.c  om*/
import java.text.NumberFormat;
import java.util.Currency;
import java.util.Locale;

public class Main {
  public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getNumberInstance();
    numberFormat.setCurrency(Currency.getInstance(Locale.CANADA));
  }
}