Java Currency getNumericCode() Method



Description

The Java Currency getNumericCode() method gets the ISO 4217 numeric code of this currency.

Declaration

Following is the declaration for java.util.Currency.getNumericCode() method

 public int getNumericCode() 

Parameters

NA

Return Value

This method returns the ISO 4217 numeric code of this currency.

Exception

NA

Getting Numeric Code of EUR Currency Example

The following example shows the usage of Java Currency getNumericCode() method for EUR currency. We've first created a currency object using EUR as currency code and then its numeric code is printed.

 package com.tutorialspoint; import java.util.Currency; public class CurrencyDemo { public static void main(String args[]) { // create a currency with EUR code Currency curr = Currency.getInstance("EUR"); System.out.println("Numeric Code for EUR = " + curr.getNumericCode()); } } 

Output

Let us compile and run the above program, this will produce the following result −

 Numeric Code for EUR = 978 

Getting Numeric Code of USD Currency Example

The following example shows the usage of Java Currency getNumericCode() method for USD currency. We've first created a currency object using USD as currency code and then its numeric code is printed.

 package com.tutorialspoint; import java.util.Currency; public class CurrencyDemo { public static void main(String args[]) { // create a currency with USD code Currency curr = Currency.getInstance("USD"); System.out.println("Numeric Code for USD = " + curr.getNumericCode()); } } 

Output

Let us compile and run the above program, this will produce the following result −

 Numeric Code for USD = 840 

Getting Numeric Code of INR Currency Example

The following example shows the usage of Java Currency getNumericCode() method for INR currency. We've first created a currency object using INR as currency code and then its numeric code is printed.

 package com.tutorialspoint; import java.util.Currency; public class CurrencyDemo { public static void main(String args[]) { // create a currency with INR code Currency curr = Currency.getInstance("INR"); System.out.println("Numeric Code for INR = " + curr.getNumericCode()); } } 

Output

Let us compile and run the above program, this will produce the following result −

 Numeric Code for INR = 356 
java_util_currency.htm
Advertisements