I'm using POI to fetch a cell from an Excel Sheet and that is working well.
I determine that the cell contains numeric data but I don't know how it is being represented. It may be 884312314 OR 34.555 OR 74.23 OR 27.34E6
I need the result to be a
String.
I'd like to show the scientific value as a string of numbers without the E.
I can throw away the decimal part but prefer not to round.
If it was always the same input format I could use a
Java method or formatting to get to a String. The trouble is that I wont know the starting format.
What can I do?
Thanks,
Kevin