(android) decimalformat, uses comma in place of fu

2019-06-19 21:27发布

I am developing an Android app where I want to format my double number to #.##, which I have done using below code.

Double BMI = ((fWeight)/(dHeight*dHeight));
DecimalFormat df = new DecimalFormat("0.00");
String sBMI = df.format(BMI);

While testing when the language of hardware is set to English(default language), it works fine, for example if BMI is 2497.227216676656 , it formats sBMI to 2497.23 , but if language is selected to French it formats it to 2497,23. In place of DOT, COMMA is being used which is crashing my app!!!

What is the reason for this?

2条回答
女痞
2楼-- · 2019-06-19 21:50

You should use the factory static method and not the constructor in order to get the right format.

DecimalFormat df = DecimalFormat.getInstance(Locale.US);

Using US locale will make sure that all formatted data will be in the right form.

查看更多
Explosion°爆炸
3楼-- · 2019-06-19 21:54

Try this:

Double BMI = ((fWeight)/(dHeight*dHeight));
DecimalFormat df = new DecimalFormat("0.00");
DecimalFormatSymbols dfs = new DecimalFormatSymbols();
dfs.setDecimalSeparator('.');
df.setDecimalFormatSymbols(dfs);
String sBMI = df.format(BMI);
查看更多
登录 后发表回答