https://bz.apache.org/bugzilla/show_bug.cgi?id=59559
Javen O'Neal <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|LATER |INVALID --- Comment #3 from Javen O'Neal <[email protected]> --- > OPCPackage pkg = OPCPackage.open(new File(ctxPath)); > XSSFWorkbook wb_template = new XSSFWorkbook(pkg); > pkg.close(); > SXSSFWorkbook workbook = new SXSSFWorkbook(wb_template, CACHE_SIZE); You are probably getting the error here where you are to created a workbook from a closed resource. You must keep the source workbook and the source OPCPackage open until after the SXXSFWorkbook has been opened. -- 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]
