getCurrency()方法是Java中java.text.DecimalFomrat类的内置方法,用于返回使用该货币格式化货币值时使用的货币。如果没有要确定的有效货币或以前没有设置货币,则可以为null。
用法:
public Currency getCurrency()
参数:该函数不接受单个参数。
返回值:该函数返回格式化货币值时使用的货币。
错误和异常:当数字格式类未实现货币格式设置时,该函数将引发UnsupportedOperationException
下面是上述函数的实现:
程序1:
// Java program to illustrate the
// getCurrency() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the Currency Instance
DecimalFormat deciFormat = new DecimalFormat();
// Stores the values
String values = deciFormat.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
输出:
US Dollar
程序2:
// Java program to illustrate the
// getCurrency() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the Currency Instance
DecimalFormat deciFormat = new DecimalFormat();
// Sets the currency to Canadian Dollar
deciFormat.setCurrency(
Currency.getInstance(
Locale.CANADA));
// Stores the values
String values = deciFormat.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
输出:
Canadian Dollar
参考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getCurrency()
相关用法
- Java NumberFormat getCurrency()用法及代码示例
- Java DecimalFormatSymbols getCurrency()用法及代码示例
- Java DecimalFormat getRoundingMode()用法及代码示例
- Java DecimalFormat getMinimumIntegerDigits()用法及代码示例
- Java DecimalFormat getMaximumIntegerDigits()用法及代码示例
- Java DecimalFormat getMinimumFractionDigits()用法及代码示例
- Java DecimalFormat setMaximumIntegerDigits()用法及代码示例
- Java DecimalFormat toLocalizedPattern()用法及代码示例
- Java DecimalFormat toPattern()用法及代码示例
- Java DecimalFormat getMultiplier()用法及代码示例
- Java DecimalFormat getPositiveSuffix()用法及代码示例
- Java DecimalFormat getPositivePrefix()用法及代码示例
- Java DecimalFormat hashCode()用法及代码示例
- Java DecimalFormat setMinimumIntegerDigits()用法及代码示例
- Java DecimalFormat getNegativeSuffix()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat getCurrency() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。