I have a String "45,78". How can i format it to normal format like 45.78 in java?
Probably i think i need to create some format object and than format this according to en number format.
How can i do that?
|
I have a String Probably i think i need to create some format object and than format this according to en number format. |
||||
|
|
|
Use the predefined DecimalFormats that the JDK offers for Locales:
Chose Locales to suit you. This is another case of "don't reinvent the wheel" and "use what the JDK offers" |
||||
|
|