Java Internationalization - Format Currencies



In this example, we're formatting currencies based on US locale and Danish Locale.

Example

 import java.text.NumberFormat; import java.util.Locale; public class I18NTester { public static void main(String[] args) { Locale enLocale = new Locale("en", "US"); Locale daLocale = new Locale("da", "DK"); NumberFormat numberFormat = NumberFormat.getCurrencyInstance(daLocale); System.out.println(numberFormat.format(100.76)); numberFormat = NumberFormat.getCurrencyInstance(enLocale); System.out.println(numberFormat.format(100.76)); } } 

Output

It will print the following result.

 kr 100,76 $100.76 
Advertisements