Problem with Numeric/String using Apache POI...
- by joycollector
Hi!
I have excel file with such contents:
A1: SomeString
A2: 2
All fields are set to String format.
When I read file in java using poi it tells that B1 is numeric cell format.
The problem is that the value in A1 can be 2 or 2.0 so I can't just use .toString().
Can anyone help please?