I am using OpenXML Formats WordProcessingML java based API for manipulating a docx file. I am opening the docx file and searching for specific place holders and replacing them with contents at runtime. For example, let's consider the offer letter template which has fixed content such as the candidate is being offered the role of XYZ with salary of ABC.DE $. The content of the letter is fixed or static and the values for place holders attributes role (XYZ) and salary(ABC) will be computed at runtime.
Now, the requirement is that I need to add contents of a PDF file into a docx file at the position specified by place holder field say PDF.
My question is:
- Is it possible to add the contents of the pdf into a docx file.
- If yes, please provide me with a sample code.
- If no, is it possible to add the contents of the rtf file into a docx file.
Appreciate, if I get some sample reference code and steps to do this. I am looking for a java based solution.