Java Currency toString() Method



Description

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

Declaration

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

public String toString()

Parameters

NA

Return Value

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

Exception

NA

Getting String Representation of EUR Currency Example

The following example shows the usage of Java Currency toString() method for EUR currency. We've first created a currency object using EUR as currency code and then its currency 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("Currency Code for EUR = " + curr.toString());
   }
}

Output

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

Currency Code for EUR = EUR

Getting String Representation of USD Currency Example

The following example shows the usage of Java Currency toString() method for USD currency. We've first created a currency object using USD as currency code and then its currency 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("Currency Code for USD = " + curr.toString());
   }
}

Output

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

Currency Code for USD = USD

Getting String Representation of INR Currency Example

The following example shows the usage of Java Currency toString() method for INR currency. We've first created a currency object using INR as currency code and then its currency 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("Currency Code for INR = " + curr.toString());
   }
}

Output

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

Currency Code for INR = INR
java_util_currency.htm
Advertisements