I'm getting data from a worksheet in excel.
public void Hora()
Cell horaAgen = null;
if(row.getCell(7) != null ){
horaAgen = row.getCell(7);
System.out.println("hora: "+horaAgen);
}
}
In the worksheet this: 9:00:00 After reading I get: 31-Dec-1899
What functions should I use to get the correct time.
Note: