Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

(android) decimalformat, uses comma in place of fullstop while formatting with "#.##"

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?

like image 925
Toral Avatar asked May 15 '13 04:05

Toral


2 Answers

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);
like image 144
Diego Torres Milano Avatar answered Sep 24 '22 00:09

Diego Torres Milano


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.

like image 38
dora2010 Avatar answered Sep 24 '22 00:09

dora2010