For example, I want to calculate this: 4,000,000.0 * 4; and I got this: 1.6E7. What should I do, to got this: 16,000,000.0?? Thx!!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use DecimalFormat as follows:
|
|||
|
|
Have a look at java.text.DecimalFormat class. |
|||
|
|
|
Use NumberFormat or DecimalFormat http://download.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html |
|||
|
|
|
You can implement |
||||
|
|
1.6E7is a readable format. – Peter Lawrey Oct 5 '11 at 11:13