Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 4 down vote accepted

Use the predefined DecimalFormats that the JDK offers for Locales:

public static void main(String[] args) throws ParseException {
    String input = "45,78";
    NumberFormat from = DecimalFormat.getNumberInstance(Locale.FRANCE);
    NumberFormat to = DecimalFormat.getNumberInstance(Locale.US);
    String output = to.format(from.parse(input));
    System.out.println(output); // "45.78"
}

Chose Locales to suit you.

This is another case of "don't reinvent the wheel" and "use what the JDK offers"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.