tags:

views:

38

answers:

1

I have an application where I have some prices in Dollars and some in INR. Now when I show price of a commodity, Depending on its price is in Dollars or INR, I can tell the currency I am showing the price in. The problem comes when I am showing the total or Net-Worth. In that case, I have to convert either INR to Dollar or Vice-Versa. Can anyone help me with obtaining price of dollar in INR, using java.

+2  A: 

You can use exchange rate APIs available here. I am not sure how reliable or up to date the service is.

Suresh Kumar
Thanks Suresh it works. Though there is a marginal diff b/w original value and value return by it(.20 Rs).
Logan