The getCurrency() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to return 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.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
DecimalFormat deciFormat = new DecimalFormat();
String values = deciFormat.getCurrency()
.getDisplayName();
System.out.println(values);
}
}
|
Program 2:
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
DecimalFormat deciFormat = new DecimalFormat();
deciFormat.setCurrency(
Currency.getInstance(
Locale.CANADA));
String values = deciFormat.getCurrency()
.getDisplayName();
System.out.println(values);
}
}
|
Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getCurrency()