如果语言集使用小数点或小数点,是否有一种简单的回读方式?
答案 0 :(得分:21)
编辑:根据@Algar的建议更新;你可以直接使用:
char separatorChar = DecimalFormatSymbols.getInstance().getDecimalSeparator();
因为它总会返回DecimalFormatSymbols
的实例。
NumberFormat nf = NumberFormat.getInstance();
if (nf instanceof DecimalFormat) {
DecimalFormatSymbols sym = ((DecimalFormat) nf).getDecimalFormatSymbols();
char decSeparator = sym.getDecimalSeparator();
}
文档:
NumberFormat
,DecimalFormat
,DecimalFormatSymbols
根据DecimalFormat文档,显然调用NumberFormat.getInstance()是安全的,但可能会返回除DecimalFormat之外的子类(我看到的另一个选项是ChoiceFormat)。我相信在大多数情况下它应该是DecimalFormat,然后您可以将decSeparator
与,
和.
进行比较,以查看它使用的格式。
答案 1 :(得分:2)
我确实试过这个并且效果很好......
String osVersion = System.getProperty("os.version");
String PhoneModel = android.os.Build.MODEL;
String locale = this.getResources().getConfiguration().locale.getDisplayCountry();
char decSeparator = '*';
DecimalFormatSymbols dfs = new DecimalFormatSymbols();
decSeparator = dfs.getDecimalSeparator();
String androidVersion = android.os.Build.VERSION.RELEASE;
String prologue = String.format("OS verson = %s PhoneModel = %s locale = %s DecimalFormatSymbol = [%c] androidVersion = %s ",
osVersion ,PhoneModel, locale, decSeparator,androidVersion);
答案 2 :(得分:1)
你可以使用:
Currency currency = Currency.getInstance(device_locale);
而不是使用currency.getSymbol()
作为符号。对于默认设备区域设置,您可以使用:
@TargetApi(Build.VERSION_CODES.N)
public static Locale getCurrentLocale(Context c) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
return c.getResources().getConfiguration().getLocales().get(0);
} else {
//noinspection deprecation
return c.getResources().getConfiguration().locale;
}
}
答案 3 :(得分:1)
或者为什么不
DecimalFormatSymbols.getInstance().decimalSeparator
答案 4 :(得分:-1)
不确定是否有简单的方法,但您可以测试正在使用的语言集,然后根据该语言是使用逗号还是小数进行适当的更改。