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?
|
|
|
Use DecimalFormat.
|
||||
|
|
|||
|
|
|
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. |
|||
|
|
|
I think the best and simplest solution is (KISS):
|
|||||
|
|
Here i will demonstrate you that how to make your decimal no shorter, here i am shorter it it to 4 value after decimal.
|
|||
|
|