如何从GWT获取用户本地小数分隔符。我找到了NumberFormat实用程序,它只返回整个格式并提供解析。
NumberFormat.getDecimalFormat()...
是否有(简单)方法从小数格式获取小数分隔符,千位分隔符。
答案 0 :(得分:13)
import com.google.gwt.i18n.client.LocaleInfo;
String decimalSeparator = LocaleInfo.getCurrentLocale().getNumberConstants().decimalSeparator();
String thousandSeparator = LocaleInfo.getCurrentLocale().getNumberConstants().groupingSeparator();
答案 1 :(得分:2)
您可以使用已知编号对其进行播种,然后针对所需的字符进行解析。
import com.google.gwt.i18n.client.NumberFormat;
NumberFormat fmt = NumberFormat.getDecimalFormat();
double value = 1234.5;
String formatted = fmt.format(value);
String thousandSeparator = formatted.substring(1,2);
String decimalSeparator = formatted.substring(5,6);