I currently use the following code to print a double:
return String.format(\"%.2f\", someDouble);
This works well, except that Java uses my
I had the same issue.. 55.1 transformed to 55,10. My quick (dirty?) fix is :
55.1
55,10
String.format("%.2f", value).replaceAll(",",".");