Currency Display in Euro
Hi All,
I am using
Locale currentLocale = new Locale("ca", "ES", "EURO");
NumberFormat currencyFormat
= NumberFormat.getCurrencyInstancecurrentLocale);
currencyFormat.setMinimumFractionDigits(2);
currencyFormat.setMaximumFractionDigits(2);
currencyFormat.format(some floating price))
for euro currency as locale. But in the web pages it is displayed as
Subtotal: 23,81
Price Per Set:1,04
Any help in this regard would be highly appreciated.
Thanks
Sathish
I expect it to print Euro currency symbol.

