https://bz.apache.org/bugzilla/show_bug.cgi?id=57603
--- Comment #2 from [email protected] --- After doing some additional tests, it seems that writing such a file and opening it again leads to an Exception. Here is a small testcase that reproduce the error using the previously attached document : public void testSevenRowTable() throws Exception { HWPFDocument hwpfDocument = new HWPFDocument( POIDataSamples .getDocumentInstance().openResourceAsStream( "Bug57603-sevencolumns.doc" ) ); ByteArrayOutputStream out = new ByteArrayOutputStream(); hwpfDocument.write(out); out.close(); HWPFDocument hwpfDocument2 = new HWPFDocument(new ByteArrayInputStream(out.toByteArray())); } -- 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]
