Hi,
I have docx file which is a template document(let's say it temp.docx), having header and footer. Also i have a another docx file which is having text for final document(let's say data.docx). Well My requirement is to create a document by inserting all the text and formatting information from 'data' to 'temp' file.
I tried following code:
WordprocessingMLPackage masterDoc = WordprocessingMLPackage.load(new FileInputStream(new File(masterTemplatePath)));
WordprocessingMLPackage customDoc = WordprocessingMLPackage.load(new FileInputStream(new File(customTemplatePath)));
WordprocessingMLPackage finalDoc = new ...