I was trying to read date form an excel using this code
case 2:
if(cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
if ((cell.getDateCellValue()) != null) {
postAssumpContractPojo.setAssumptionDate(cell.getDateCellValue());
}
}
Break;
But the first Condition is getting Flase ( if(cell.getCellType() == Cell.CELL_TYPE_NUMERIC)) And in excel date is in this format (2014-10-14) Please Help ...