getCurrency()方法是java.text.NumberFormat的內置方法,返回使用該貨幣格式化貨幣值時使用的貨幣。如果沒有要確定的有效貨幣或以前沒有設置貨幣,則可以為null。
用法:
public Currency getCurrency()
參數:該函數不接受單個參數。
返回值:該函數返回格式化貨幣值時使用的貨幣。
錯誤和異常:當數字格式類未實現貨幣格式設置時,該函數將引發UnsupportedOperationException
下麵是上述函數的實現:
示例1:
// Java program to implement
// the above function
import java.text.NumberFormat;
import java.util.Locale;
public class Main {
public static void main(String[] args)
throws Exception
{
// Get the instance
NumberFormat nF
= NumberFormat
.getInstance();
// Stores the values
String values
= nF.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
輸出:
US Dollar
示例2:
// Java program to implement
// the above function
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Currency;
public class Main {
public static void main(String[] args)
throws Exception
{
// Get the instance
NumberFormat nF
= NumberFormat
.getNumberInstance();
// Sets the currency to Canadian Dollar
nF.setCurrency(
Currency.getInstance(
Locale.CANADA));
// Stores the values
String values
= nF.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
輸出:
Canadian Dollar
參考: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getCurrency()
相關用法
- Java DecimalFormatSymbols getCurrency()用法及代碼示例
- Java NumberFormat getCurrencyInstance()用法及代碼示例
- Java NumberFormat getIntegerInstance()用法及代碼示例
- Java NumberFormat getInstance()用法及代碼示例
- Java NumberFormat setMaximumIntegerDigits()用法及代碼示例
- Java NumberFormat getMaximumFractionDigits()用法及代碼示例
- Java NumberFormat getPercentInstance()用法及代碼示例
- Java NumberFormat getNumberInstance()用法及代碼示例
- Java NumberFormat getAvailableLocales()用法及代碼示例
- Java NumberFormat setCurrency()用法及代碼示例
- Java NumberFormat parse()用法及代碼示例
- Java NumberFormat setParseIntegerOnly()用法及代碼示例
- Java NumberFormat isParseIntegerOnly()用法及代碼示例
- Java NumberFormat setMinimumFractionDigits()用法及代碼示例
- Java NumberFormat hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 NumberFormat getCurrency() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。