On Mon, 14 Apr 2008, mariag wrote:
But they have example for writing the cell, but not for reading the custom formated cell.

Ah, reading's easy. Just find the cell with your time in it, then do
  cell.getDateCellValue()

That'll give you back a standard java date object. If you just want the time out, then pass that to a java calendar, and call the getters to get the hour, minute, second etc. If just want to print the time as a string, use java.text.SimpleDateFormat to format the date as you want it

Nick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to