Hi,
I have the following code:
int colIndex = thisCell.getColumnIndex()+1;
int rowIndex = thisCell.getRowIndex();
Cell nextCell = worksheet.getCell(rowIndex, colIndex);
String CellValue = nextCell.getStringValue();
If my cell value is "" or " " then CellValue is showing an integer value either 31 or 33.
I am using Java.Cells-7.1.1. We upgraded from Java.Cells-7.0.2. The above code was working fine with 7.0.2 version.
I need to show the value as it is. Any idea how to fix this?
Thanks
Hari