I have a question about formatting the Rupee currency (Indian Rupee - INR).
For example, numbers here are represented as:
1 10 100 1,000 10,000 1,00,00
heres is simple thing u can do ,
float amount = 100000; NumberFormat formatter = NumberFormat.getCurrencyInstance(new Locale("en", "IN")); String moneyString = formatter.format(amount); System.out.println(moneyString);
The output will be , Rs.100,000.00 .