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

What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. This is the standard method of rounding most people expect in most situations.

I also would like only significant digits to be displayed. That is there should not be any trailing zeroes.

I know one method of doing this is to use the String.format method:

String.format("%.5g%n", 0.912385);

returns:

0.91239

which is great, however it always displays numbers with 5 decimal places even if they are not significant:

String.format("%.5g%n", 0.912300);

returns:

0.91230

Another method is to use the DecimalFormatter:

DecimalFormat df = new DecimalFormat("#.#####");
df.format(0.912385);

returns:

0.91238

However as you can see this uses half-even rounding. That is it will round down if the previous digit is even. What I'd like is this:

0.912385 -> 0.91239
0.912300 -> 0.9123

What is the best way to achieve this in Java?

share|improve this question

16 Answers

up vote 90 down vote accepted

Use setRoundingMode, see linked Javadoc, set the RoundingMode explicitly to handle your issue with the half-even round, then use the format pattern for your required output.

share|improve this answer
This is probably the best solution presented so far. The reason I didn't spot this facility when I first looked at the DecimalFormat class is that it was only introduced in Java 1.6. Unfortunately I'm restricted to using 1.5 but it will be useful to know for the future. – Alex Spurling Oct 1 '08 at 13:07

Assuming value is a double, you can do:

(double)Math.round(value * 100000) / 100000

That's for 5 digits precision. The number of zeros indicate the number of decimals.

share|improve this answer
7  
I know... If you find out that this particular solution is a performance bottleneck for your system, please let me know ;) – asterite Sep 30 '08 at 17:40
35  
I'm paid by clock cycle -- it could be important. – Chris Cudmore Oct 2 '08 at 20:00
10  
UPDATE: I just confirmed that doing this IS WAY faster than using DecimalFormat. I looped using DecimalFormat 200 times, and this method. DecimalFormat took 14ms to complete the 200 loops, this method took less than 1ms. As I suspected, this is faster. If you get paid by the clock cycle, this is what you should be doing. I'm surprised Chris Cudmore would even say what he said to be honest. allocating objects is always more expensive than casting primitives and using static methods (Math.round() as opposed to decimalFormat.format()). – Andi Jay Jul 10 '12 at 14:35
9  
This technique fails in over 90% of cases. -1. – EJP Oct 2 '12 at 3:12
3  
Indeed, this fails: Math.round(0.1 * Math.pow(10,20))/Math.pow(10,20) == 0.09223372036854775. – Robert Tupelo-Schneck Oct 3 '12 at 18:51
show 7 more comments

new BigDecimal(String.valueOf(double)).setScale(yourScale, BigDecimal.ROUND_HALF_UP);

will get you a BigDecimal. To get the string out of it, just call that BigDecimal's toString method, or the toPlainString method for Java 5+ for a plain format string.

share|improve this answer
8  
That's my preferred solution. Even shorter: BigDecimal.valueOf(doubleVar).setScale(yourScaleHere, BigDecimal.ROUND_HALF_UP); BigDecimal.valueOf(double val) actually calls Double.toString() under the hood ;) – Etienne Neveu Feb 9 '10 at 10:59

You can also use the

DecimalFormat df = new DecimalFormat("#.00000");
df.format(0.912385);

to make sure you have the trailing 0's.

share|improve this answer
4  
I believe one of the goals of the question was that "there should not be any trailing zeroes". – Lunchbox Nov 20 '12 at 20:10

Suppose you have

double d = 9232.129394d;

you can use BigDecimal

BigDecimal bd = new BigDecimal(d).setScale(2, RoundingMode.HALF_EVEN);
d = bd.doubleValue();

or without BigDecimal

d = Math.round(d*100)/100.0d;

with both solutions d -> 9232.13

share|improve this answer
I think this is the best solution for Java 1.5 users (and below). One comment tho, don't use the HALF_EVEN rounding mode since it has diff behavior for odd and even numbers (2.5 rounds to 2 while 5.5 rounds to 6, for example), unless this is what you want. – IcedDante Jul 16 '12 at 19:11
fantastic solution – Nik Patel Jul 24 '12 at 14:05
1  
The first solution is correct: the second one doesn't work. See here for proof. – EJP Mar 19 at 23:27

Real's Java How-to posts this solution, which is also compatible for versions before Java 1.6.

BigDecimal bd = new BigDecimal(Double.toString(d));
bd = bd.setScale(decimalPlace, BigDecimal.ROUND_HALF_UP);
return bd.doubleValue();
share|improve this answer

@Milhous: the decimal format for rounding is excellent:

You can also use the

DecimalFormat df = new DecimalFormat("#.00000");
df.format(0.912385);

to make sure you have the trailing 0's.

I would add that this method is very good at providing an actual numeric, rounding mechanism - not only visually, but also when processing.

Hypothetical: you have to implement a rounding mechanism into a GUI program. To alter the accuracy / precision of a result output simply change the caret format (i.e. within the brackets). So that:

DecimalFormat df = new DecimalFormat("#0.######");
df.format(0.912385);

would return as output: 0.912385

DecimalFormat df = new DecimalFormat("#0.#####");
df.format(0.912385);

would return as output: 0.91239

DecimalFormat df = new DecimalFormat("#0.####");
df.format(0.912385);

would return as output: 0.9124

[EDIT: also if the caret format is like so ("#0.############") and you enter a decimal, e.g. 3.1415926, for argument's sake, DecimalFormat does not produce any garbage (e.g. trailing zeroes) and will return: 3.1415926 .. if you're that way inclined. Granted, it's a little verbose for the liking of some dev's - but hey, it's got a low memory footprint during processing and is very easy to implement.]

So essentially, the beauty of DecimalFormat is that it simultaneously handles the string appearance - as well as the level of rounding precision set. Ergo: you get two benefits for the price of one code implementation. ;)

share|improve this answer
1  
If you really want decimal numbers for calculation (and not only for output), do not use a binary-based floating point format like double. Use BigDecimal or any other decimal-based format. – Paŭlo Ebermann Jul 3 '11 at 19:57
Also, welcome on Stack Overflow. I formatted your answer a bit nicer ... feel free to click the edited ... ago link to see the differences, or edit again to see the code I used. – Paŭlo Ebermann Jul 3 '11 at 19:58

You could use the following utility method-

public static double round(double valueToRound, int numberOfDecimalPlaces)
{
    double multipicationFactor = Math.pow(10, numberOfDecimalPlaces);
    double interestedInZeroDPs = valueToRound * multipicationFactor;
    return Math.round(interestedInZeroDPs) / multipicationFactor;
}
share|improve this answer
thanks Amit, adding this to my utils lib – Stevko May 2 '12 at 19:02
Excellent answer, thanks. – mcmu11en May 11 '12 at 13:11
Doesn't work, see here for proof. – EJP Mar 19 at 23:18

As some others have noted, the correct answer is to use either DecimalFormat or BigDecimal. Floating-point doesn't have decimal places so you cannot possibly round/truncate to a specific number of them in the first place. You have to work in a decimal radix, and that is what those two classes do.

I am posting the following code as a counter-example to all the answers in this thread and indeed all over StackOverflow (and elsewhere) that recommend multiplication followed by truncation followed by division. It is incumbent on advocates of this technique to explain why the following code produces the wrong output in over 92% of cases.

public class RoundingCounterExample
{

    static float roundOff(float x, int position)
    {
        float a = x;
        double temp = Math.pow(10.0, position);
        a *= temp;
        a = Math.round(a);
        return (a / (float)temp);
    }

    public static void main(String[] args)
    {
        float a = roundOff(0.0009434f,3);
        System.out.println("a="+a+" (a % .0001)="+(a % 0.001));
        int count = 0, errors = 0;
        for (double x = 0.0; x < 1; x += 0.0001)
        {
            count++;
            double d = x;
            int scale = 2;
            double factor = Math.pow(10, scale);
            d = Math.round(d * factor) / factor;
            if ((d % 0.01) != 0.0)
            {
                System.out.println(d + " " + (d % 0.01));
                errors++;
            }
        }
        System.out.println(count + " trials " + errors + " errors");
    }
}

Output of this program:

10001 trials 9251 errors

EDIT: I note that this post has been here for nearly six months and no explanations have been forthcoming. Draw your own conclusions.

share|improve this answer

You can use the DecimalFormat class.

double d = 3.76628729;

DecimalFormat newFormat = new DecimalFormat("#.##");
double twoDecimal =  Double.valueOf(newFormat.format(d));
share|improve this answer
double myNum = .912385;
int precision = 10000; //keep 4 digits
myNum= Math.floor(myNum * precision +.5)/precision;
share|improve this answer

If you really want decimal numbers for calculation (and not only for output), do not use a binary-based floating point format like double. Use BigDecimal or any other decimal-based format. – Paŭlo Ebermann


I do use BigDecimal for calculations, but bear in mind it is dependent on the size of numbers you're dealing with. In most my implementations, i find parsing from double or integer to Long is sufficient enough for very large number calculations. In fact, i've recently used parsed-to-Long to get accurate representations (as opposed to hex results) in a gui for numbers as big as ################################# characters (as an example).

share|improve this answer
Converting from double or integer to Long (or long) isn't 'parsing'. – EJP Nov 18 '12 at 1:07

While using DecimalFormat return a string, so convert the output to double if you want to use it.

share|improve this answer
2  
But that will just put the imprecision back. You don't seem to understand the issue. Decimal places and binary places aren't commensurable. If you want a specific number of decimal places you have to work in decimal. Floating-point numbers don't have decimal places. – EJP Oct 2 '12 at 3:21

maybe this pseudocode will do the trick.

format((round(r*10^desired_number_of_digits)/10^desired_num...))
share|improve this answer

So long story short, this is probably what people are looking for:

double roundedValue = BigDecimal.valueOf(doubleValue).setScale(decimalPlaces, BigDecimal.ROUND_HALF_UP).doubleValue();
share|improve this answer
This is based on Etienne Neveu comment off course. – Rui Marques Apr 4 at 11:18

The code snippet below shows how to display n digits. The trick is to set variable pp to 1 followed by n zeros. In the example below, variable pp value has 5 zeros, so 5 digits will be displayed.

double pp = 10000;

double myVal = 22.268699999999967;
String needVal = "22.2687";

double i = (5.0/pp);

String format = "%10.4f";
String getVal = String.format(format,(Math.round((myVal +i)*pp)/pp)-i).trim();
share|improve this answer

protected by Community Dec 11 '11 at 18:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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