https://bz.apache.org/bugzilla/show_bug.cgi?id=58061
Dominik Stadler <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW --- Comment #2 from Dominik Stadler <[email protected]> --- The following produces an invalid xls for me both on Linux and Windows: @Test public void test58061() throws IOException { Workbook wb = new HSSFWorkbook(); wb.createSheet("testsheet"); OutputStream out = new FileOutputStream("C:\\temp\\58061.xls"); try { wb.write(out); } finally { out.close(); } } I will attach the result of POIFSDump for the a good file (using OPOIFSFileSystem) and a bad one (using NPOIFSFileSystem). -- 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]
