Format double to 2 decimal places with leading 0s

Viewed 88997

Possible Duplicate:
Round a double to 2 significant figures after decimal point

I am trying to format a double to 2 decimal places with leading zeros and there's no luck. Here is my code:

Double price = 32.0;
DecimalFormat decim = new DecimalFormat("#.##");
Double price2 = Double.parseDouble(decim.format(price));

And I want output to be 32.00 instead I get 32.0
Any solutions??

2 Answers
Related