The getCurrency() method is a built-in method of the java.text.NumberFormat returns the currency which is used while formatting currency values by this currency. It can be null if there is no valid currency to be determined or if no currency has been set previously.
Syntax:
public Currency getCurrency()
Parameters: The function does not accepts a single parameter.
Return Value: The function returns the currency which is used while formatting currency values.
Errors and Exceptions: The function throws UnsupportedOperationException when the number format class doesn’t implement currency formatting
Below is the implementation of the above function:
Program 1:
import java.text.NumberFormat;
import java.util.Locale;
public class Main {
public static void main(String[] args)
throws Exception
{
NumberFormat nF
= NumberFormat
.getInstance();
String values
= nF.getCurrency()
.getDisplayName();
System.out.println(values);
}
}
|
Program 2:
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Currency;
public class Main {
public static void main(String[] args)
throws Exception
{
NumberFormat nF
= NumberFormat
.getNumberInstance();
nF.setCurrency(
Currency.getInstance(
Locale.CANADA));
String values
= nF.getCurrency()
.getDisplayName();
System.out.println(values);
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getCurrency()