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

need to round my answer to nearest10th.

    double finalPrice = everyMile + 2.8;
    DecimalFormat fmt = new DecimalFormat("0.00");
    this.answerField.setText("£" + fmt.format(finalPrice) + " Approx");

the above code rounds a whole number to the nearest 10th however it wont round a decimal. e.g 2.44 should be rounded to 2.40

share|improve this question
2  
Seconding Jon Skeet's last remark, please be aware that no number written in decimal as x.1, x.2, x.3, x.4, x.6, x.7, x.8, or x.9 is represented exactly as a floating-point number. – Pascal Cuoq Dec 11 '09 at 12:48
i don't understand what you said – Tuffy G Dec 11 '09 at 12:59
3  
Take the time to understand it as it is important. – Peter Lindqvist Dec 11 '09 at 13:18
lol. could you please explain? – Tuffy G Dec 11 '09 at 13:19
2  
en.wikipedia.org/wiki/Floating_point#Accuracy_problems summary: floats and money don't mix. – bobince Dec 11 '09 at 13:32

5 Answers

up vote 7 down vote accepted

Change a bit the pattern to hard-code the final zero:

double finalPrice = 2.46;
DecimalFormat fmt = new DecimalFormat("0.0'0'");
System.out.println("£" + fmt.format(finalPrice) + " Approx");

Now, if you're manipulating real-world money, you'd better not use double, but int or BigInteger.

share|improve this answer
MAGICAL. lol worked. so by says '0' it means physically stick 0 as the final number no matter what? – Tuffy G Dec 11 '09 at 12:58
yes, it does mean that. – Jerome Dec 11 '09 at 12:59
sweet, thanks for your help. i posted the same thing in a different forum, after 4 hours they sarcastically reffered me to google.(which i tried before) you guys where super fast lol – Tuffy G Dec 11 '09 at 13:02

Use BigDecimal instead.

You really, really don't want to use binary floating point for monetary values.

EDIT: round() doesn't let you specify the decimal places, only the significant figures. Here's a somewhat fiddly technique, but it works (assuming you want to truncate, basically):

import java.math.*;

public class Test
{
    public static void main(String[] args)
    {
        BigDecimal bd = new BigDecimal("20.44");
        bd = bd.movePointRight(1);
        BigInteger floor = bd.toBigInteger();
        bd = new BigDecimal(floor).movePointLeft(1);
        System.out.println(bd);
    }
}

I'd like to hope there's a simpler way of doing this...

share|improve this answer

This outputs 2.40

BigDecimal bd = new BigDecimal(2.44);
System.out.println(bd.setScale(1,RoundingMode.HALF_UP).setScale(2));
share|improve this answer

EDIT

Try this:

double d = 25.642;
String s = String.format("£ %.2f", Double.parseDouble(String.format("%.1f", d).replace(',', '.')));
System.out.println(s);

I know this is a stupid way, but it works.

share|improve this answer
sorry, that didn't work – Tuffy G Dec 11 '09 at 13:00

Try the following:

double finalPriceRoundedToNearestTenth = Math.round(10.0 * finalPrice) / 10.0;
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.