how to print a Double without commas

后端 未结 10 722
萌比男神i
萌比男神i 2020-12-11 15:37

When using toString(), Double adds commas (5143 is printed as 5,143). How to disable the commas?

10条回答
  •  春和景丽
    2020-12-11 16:09

    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.

提交回复
热议问题