https://issues.apache.org/bugzilla/show_bug.cgi?id=52447
--- Comment #1 from Dave S. <[email protected]> 2012-01-10 22:47:42 UTC --- This is the code I'm using to attempt to open the workbook: public ExcelFileWrapper(String filename, Timestamp endDate) { this.filename = filename; this.endDate = endDate; final File f = new File(filename); try { excelFile = WorkbookFactory.create(f); } catch (Exception e) { log.error("Could not open Excel workbook for updating.", e); } } -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
