Is there a way to diplay a float value 22.19999999998 as 22.2?

  • Thread starter Harish Madhavan K
  • Start date
H

Harish Madhavan K

Hi,
The value retrned from the server is 22.1999999998
How do I display/pirntln this as 22.2 in a gui/console?
Thanks
Harish
 
K

Karl von Laudermann

Harish Madhavan K said:
Hi,
The value retrned from the server is 22.1999999998
How do I display/pirntln this as 22.2 in a gui/console?
Thanks
Harish

You could use a NumberFormat to display the value to one decimal place.

fmt = NumberFormat.getNumberInstance();
fmt.setMaximumFractionDigits(1);

double myValue = 22.1999999998;
String valStr = fmt.format(myValue);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top