Java Internalization - Phân tích cú pháp số
Trong ví dụ này, chúng tôi đang giới thiệu việc phân tích cú pháp của số hiện diện ở các ngôn ngữ khác nhau.
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"));
}
}
Đầu ra
Nó sẽ in ra kết quả sau.
100.76
10076
In