I wanted to get the value of a Numeric cell as a simple string.
Suppose there the type of cell is numeric with value 90%. Now I cannot use cell.ge
90%
cell.ge
Try
cell.getRichStringCellValue ().getString();
Have a look at this example Here is Doc