This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Other Open Source Projects and the fly likes Reading the Date and time values from excel sheet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Other Open Source Projects
Reply Bookmark "Reading the Date and time values from excel sheet" Watch "Reading the Date and time values from excel sheet" New topic
Author

Reading the Date and time values from excel sheet

sridhar kandula
Greenhorn

Joined: Jun 26, 2011
Posts: 1
hi guys ,
iam trying to read excel sheet data using apache poi api .my problem is i cant read the date(dd/mm/yy) and time(hh:mm:ss) values concurrently from two different cells .when iam trying to do so iam getting the values in either time format or data format but not both the below is the sample code please post your answers with sample code


if (HSSFDateUtil.isCellDateFormatted(cell)) {
// format in form of M/D/YY

cal.setTime(HSSFDateUtil.getJavaDate(num));
cellText = (String.valueOf(cal.get(Calendar.YEAR))).substring(2);
cellText = cal.get(Calendar.MONTH)+1 + “/” +cal.get(Calendar.DAY_OF_MONTH) + “/” +cellText;

// cal.setTime(cell.getDateCellValue());

datetext = cal.get(Calendar.HOUR) + “:” +cal.get(Calendar.MINUTE) + “:” +cal.get(Calendar.SECOND);

}
Charanya Rajagopalan
Greenhorn

Joined: Jun 28, 2011
Posts: 2

Hi Sridhar, here's what I tried..
I used an Excel 2007 format sheet with 6/22/2011 in cell A1 and 15:16:17 in cell B1. Since this is Excel 2007, I used the XSSF classes instead of HSSF.



That gives me the date as Wed Jun 22 03:16:17 GMT+05:30 2011
Hope that helps!
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Reading the Date and time values from excel sheet
 
Similar Threads
I want to read datas from excel sheet
Retrieve value from a DateField
. reading data from MS EXcel using apache poi api
Time format problem in MIDLet
Using JDBC to insert into MS Excel file