Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to get the double value that is only two digit after decimal point.

for example

if

i=348842.
double i2=i/60000;
tv.setText(String.valueOf(i2));

this code generating 5.81403333.

But I want only 5.81.

So what shoud I do?

share|improve this question

6 Answers

up vote 9 down vote accepted

Use DecimalFormat.

double i2=i/60000;
tv.setText(new DecimalFormat("##.##").format(i2));
share|improve this answer
You do not need toString(), format already returns a String. Please also visit developer.android.com/reference/java/text/DecimalFormat.html – Vash Jun 9 '12 at 8:39
i=348842.
double i2=i/60000;
DecimalFormat dtime = new DecimalFormat("#.##"); 
i2= Double.valueOf(dtime.format(time));
v.setText(String.valueOf(i2));
share|improve this answer

First thing that should pop in a developer head while formatting a number into char sequence should be care of such details like do it will be possible to reverse the operation.

And other aspect is providing proper result. So you want to truncate the number or round it.

So before you start you should ask your self, am i interested on the value or not.

To achieve your goal you have multiple options but most of them refer to Format and Formatter, but i just suggest to look in this answer.

share|improve this answer

I think the best and simplest solution is (KISS):

double i = 348842;
double i2 = i/60000;
float k = (float) Math.round(i2 * 100) / 100;
share|improve this answer
I believe he's interested how to display only 2 significant digits. Also, because of the way floating point works, your solution will not result exactly in 5.81, but something like 5.81000000001 or the like. – Petriborg Jun 9 '12 at 14:51
I think it's impossible! Because Math.round - returns integer and we cast it to float value. How is float value (581.0) after dividing by 100 can be something like 5.81000000001? Do you have test case that describe your opinion? – Serjio Jun 9 '12 at 15:27

How about String.format("%.2f", i2)?

share|improve this answer

Here i will demonstrate you that how to make your decimal no shorter, here i am shorter it it to 4 value after decimal.

   double value = 12.3457652133
  value =Double.parseDouble(new DecimalFormat("##.####").format(value));
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.