https://bz.apache.org/bugzilla/show_bug.cgi?id=60217
--- Comment #2 from Javen O'Neal <[email protected]> --- Created attachment 34340 --> https://bz.apache.org/bugzilla/attachment.cgi?id=34340&action=edit output .doc file after running unit test Using the DocumentWithOneTable.doc from your attachment, the unit test below creates the attached file. LibreOffice does not complain about this file. Can you check if Word reports that the attached file is corrupted? Added to TestHPSFBugs.java: public void test60217() throws Exception { InputStream fis = new FileInputStream("/tmp/bug60217.doc"); POIDocument doc = new HWPFDocument(fis); fis.close(); doc.write(new File("/tmp/bug60217-out.doc")); doc.close(); } -- 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]
