I am trying to add different numbers from a file in java.
Numbers can be of format : "1.13206e+06"
How can I parse this number to reflect actual value in java??
Thanks
|
I am trying to add different numbers from a file in java. Numbers can be of format : "1.13206e+06" How can I parse this number to reflect actual value in java?? Thanks |
|||||
|
|
You can use
This works fine with scientific notation. |
|||
|
|
|
You want to look at Double.parseDouble |
|||