जावा आंतरिककरण - पार्स संख्या
इस उदाहरण में, हम अलग-अलग लोकेल में मौजूद संख्या के बारे में बता रहे हैं।
IOTester.java
import java.text.NumberFormat;
import java.text.ParseException;
import java.util.Locale;
public class I18NTester {
public static void main(String[] args) throws ParseException {
Locale enLocale = new Locale("en", "US");
Locale daLocale = new Locale("da", "DK");
NumberFormat numberFormat = NumberFormat.getInstance(daLocale);
System.out.println(numberFormat.parse("100,76"));
numberFormat = NumberFormat.getInstance(enLocale);
System.out.println(numberFormat.parse("100,76"));
}
}
उत्पादन
यह निम्नलिखित परिणाम को प्रिंट करेगा।
100.76
10076
छाप