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?

link|improve this question

65% accept rate
feedback

16 Answers

up vote 51 down vote accepted

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

link|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
feedback

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.

link|improve this answer
Math.round uses an internal cast to long, which you are then casting back to double. – Chris Cudmore Sep 30 '08 at 16:22
2  
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
1  
lmao ... I'm so glad I read comments :) – Ande Oct 1 '08 at 8:54
16  
I'm paid by clock cycle -- it could be important. – Chris Cudmore Oct 2 '08 at 20:00
Shame there is no function to round a double directly... – Grzenio Jan 2 at 15:29
feedback

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.

link|improve this answer
2  
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 ;) – eneveu Feb 9 '10 at 10:59
feedback

You can also use the

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

to make sure you have the trailing 0's.

link|improve this answer
feedback

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();
link|improve this answer
feedback

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

link|improve this answer
feedback

You can use the DecimalFormat class.

double d = 3.76628729;

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

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;
}
link|improve this answer
thanks Amit, adding this to my utils lib – Stevko May 2 at 19:02
Excellent answer, thanks. – malcmcmul May 11 at 13:11
feedback

@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. ;)

link|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 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
feedback

In Java you could write this code, it takes care of negative numbers too.

Carefull when using this! Java cannot represent float/double precisely, you really should use BigDecimal instead!

Concerning the following snippet : Obviously x * 100 might overflow if the value of x is near Double.POSITIVE_INFINITY or Double.NEGATIVE_INFINITY, but like everything it's a trade-off, so use it with this trade-off in mind.

double truncate(double x) {
    if ( x > 0 )
         return Math.floor(x * 100) / 100;
    else
         return Math.ceil(x * 100) / 100;
}
link|improve this answer
feedback

Interestingly I think nobody came up with this clever solution yet:

String formattedValue = new StringBuilder(String.valueOf((long)Math.floor(value * Math.pow(10, maxDigits) + 0.5d))).reverse().insert(maxDigits, '.').reverse().toString().replaceFirst("\\.?0*$", "");

It works as follows:

  1. multiply the value with 10^maxDigits
  2. add 0.5, use Math.floor and convert to long to round it
  3. convert to String and initialize a StringBuilder with this String
  4. insert the decimal point by
    a) reversing the characters
    b) inserting the decimal point at index maxDigits
    c) reversing the characters again
  5. call toString() on the Stringbuilder
  6. remove all trailing zeroes and maybe even the decimal point with a clever regular expression
link|improve this answer
feedback

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

link|improve this answer
feedback

maybe this pseudocode will do the trick.

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

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).

link|improve this answer
feedback
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();
link|improve this answer
feedback

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.