Different countries have different number formats and considering this we can have different formats using Locale of java. Using locale can help in formatting
Locale locale = new Locale("en", "IN");
NumberFormat numberFormat = NumberFormat.getInstance(locale);
using above fo...