Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
(Math.round(doubleValue*100))/100.0

Is there a better way to round decimals to 2 decimal places?

share|improve this question
1  
Define better? What do you think is wrong with that code? – Mikola Jun 27 '11 at 14:58
you mean 1000 to change in 1 or 10.123456 to 10.12? – Ovais Khatri Jun 27 '11 at 14:59
Similar question, Rounding for money, at stackoverflow.com/q/5904032/509840. – rajah9 Jun 27 '11 at 15:01
@Mikola it looks bad. @Ovais the latter. – Michael Jun 27 '11 at 15:10
1  

2 Answers

up vote 2 down vote accepted
DecimalFormat format=new DecimalFormat("#.##");
System.out.println(format.format(doubleValue));
share|improve this answer
1  
See ideone.com/BzNmF – Bala R Jun 27 '11 at 15:01
1  
You don't need to import anything from java.lang. – Martijn Courteaux Jun 27 '11 at 15:12
Do note: this does not round numbers. It just displays strings that have been formatted to a certain precision. The answer from John Skeet is the appropriate way to round to an explicit number of decimals without the juggling act of multiply-round-divide by OP. – Atreys Jun 27 '11 at 17:05

If you're interested in decimal places and therefore precise decimal values, you should typically be using java.math.BigDecimal to start with. You can then use Decimal.round or Decimal.setScale to round according to your exact needs.

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.