https://bz.apache.org/bugzilla/show_bug.cgi?id=62692

Willy <ad...@out-side.nl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |---
             Status|RESOLVED                    |REOPENED
            Version|4.0.0-FINAL                 |5.2.3-FINAL

--- Comment #8 from Willy <ad...@out-side.nl> ---
I stumbled on this after trying to use 5.2.5 for creating a DOCX file. 

import org.apache.poi.xwpf.usermodel.XWPFDocument;


public class WordTest {
   public static void main(String[] args)throws Exception  {
      //Blank Document
      XWPFDocument document = new XWPFDocument(); 

      //Write the Document in file system
      FileOutputStream out = new FileOutputStream( new
File("createdocument.docx"));
      document.write(out);
      out.close();
      System.out.println("createdocument.docx written successully");
   }
}

Gives the same error today. 

 WildFly Full 24.0.0.Final
 xercesImpl-2.12.0.SP03.jar

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to