Type a currency format for a US locale
Type a currency format for a US locale
Answer
NumberFormat cf = NumberFormat.getCurrencyInstance(Locale.US); String s = cf.format(1999.99);
getCurrencyInstance creates a locale-aware formatter. In the US this produces "$1,999.99"; in Germany it produces "1.999,99 €".