When using toString(), Double adds commas (5143 is printed as 5,143).
How to disable the commas?
| ||||
|
feedback
|
|
Your problem belongs to Locale, as pointed out correctly by Rorick. However, you should look into DecimalFormat class, in case changing Locale means mess up all the things. Look at NumberFormat class, to deal with thousand separator. Because it seems your case is regarding thousand separator instead. | ||||
|
feedback
|
|
Probably, you have to change your locale settings. It is taken by default from system locale, but you can override this. Read javadoc on Locale class and this little tutorial to start. Locale can be specified through command line:
| |||
feedback
|
|
Java has excellent support for formatting numbers in text in different locales with the NumberFormat class: With current locale:
will get you (with swedish locale) the string: 5 000 000 ...or with a specific locale (e.g. french, which also results in 5 000 000):
| ||||
|
feedback
|
|
As far as I am aware, you can not disable what the My solution would be as follows:
Not the most elegant solution, but it works. | |||||||||||||||
feedback
|
|
Three ways:
| ||||
|
feedback
|
| |||||||
feedback
|
|
Double result= 5143.0 Sysout(result.toString()) gives me 5143.0... can u put the code for which u got so | ||||
|
feedback
|
,is a digit grouping symbol, while decimal separator is.. So what looks as5143.5in US locale is5,143.5in Russian one. – Rorick Feb 11 '10 at 7:51