Is it possible to programmatically find the default currency symbol for the current locale in BlackBerry?
A:
I don't know about BlackBerry limitations, but you should try this:
NumberFormat.getCurrencyInstance().getCurrency().getSymbol()
Eyal Schneider
2010-05-10 18:20:12
NumberFormat doesn't exist on BlackBerry. There is a Formatter class with a method called formatCurrency(), even. But it only works for the neutral Locale, which isn't very useful. Hence, this question: I have to do it myself.
ageektrapped
2010-05-10 18:33:45
A:
Yes, it possible to programmatically find the default currency symbol for the current locale in BlackBerry.
Please find this link:
Vivek Kumar Srivastava
2010-07-05 08:48:03