Internationalizing Number (I18N with Number)

The representation of the numbers differ from one locale to another. Internationalizing the numbers is good approach for the application that displays the informations according to the locales.

The NumberFormat class is used to format the number according to the specific locale. To get the instance of the NumberFormat class, we need to call either getInstance() or getNumberInstance() methods.

Syntax

Syntax of these methods is given below:

public static NumberFormat getNumberInstance(Locale locale)
public static NumberFormat getInstance(Locale locale)//same as above
Example

Example of Internationalizing Number

In this example, we are internationalizing the number. The format method of the NumberFormat class formats the double value into the locale specific number.

snippet
import java.text.NumberFormat;
import java.util.*;

public class InternalizationNumber {

static void printNumber(Locale locale){
 double dbl=105000.3245;
 NumberFormat formatter=NumberFormat.getNumberInstance(locale);
 String number=formatter.format(dbl);
 System.out.println(number+" for the locale "+locale);
}

public static void main(String[] args) {
	printNumber(Locale.UK);
	printNumber(Locale.US);
	printNumber(Locale.FRANCE);
	printNumber(Locale.JAPAN);

}
}
Output
Output:105,500.324 for the locale en_GB 105,000.324 for the locale en_US 105,a000,324 for the locale fr_FR 105,000.324 for the locale ja_JP
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +