Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Folks,
I have scientific format number and I want to convert this to integer.
2.5e17 to normal number.
Regards,
Deepak
Hi Deepack,
This a standard Java topic.
You can refer to this link https://stackoverflow.com/questions/2546147/java-convert-scientific-notation-to-regular-int or search for "java convert scientific notation to integer" using Google.
Does this help?
If so, thank's to close the case by selecting the most usefull answer.
Kudos also accepted.
Hi Deepak,
You can use the following java statement.
Double.valueOf("2.5e17").longValue();