Hi I just found out about this java api. Previously I've only known POI. I used POI in the past for an excel manipulation program, but now I am working on a DOCX automation project.
I would like to know how possible these requirements for my project are using docx4j:
1. Open template Document A, fill in missing information
2. Open template Document B, fill in missing information
3. Open template Document C, fill in missing information
4. Append Document A + B + C to create the final result.
Currently I am using Apache POI, and I have a way of replacing placeholder text in the template files. However, POI is pretty difficult because there is no way to copy an entire document into a new document, I am instead having to copy tables and paragraphs, but still some elements like Checkboxes and TextBoxes will go missing. Does docx4j offer a simpler way of copying an entire document and appending it to another one?