ok this is what I did to round a double to 2 decimal places,
amount = roundTwoDecimals(amount);
public double roundTwoDecimals(double d) {
DecimalFormat twoDForm = new DecimalFormat("#.##");
return Double.valueOf(twoDForm.format(d));
}
Works great if amount = 25.3569 or something like that. But if amount = 25.00 or amount = 25.0, then I get 25.0! What I want is both rounding as well as format to 2 decimal places. Sorry if my question is not clear. I would appreciate any help.
