Good morning,
I am merging an HTML with a docx. The program has always worked, but with the new docx the program no longer works correctly. The generated docx is generated with unreadable content, even if in reality, when you open the document with word, it is recovered. Why?
My code was:
FileInputStream docxTemplate = new FileInputStream(path + docxTemplateName);
File htmlFile = new File(path + htmlFileName);
String outpuFileName = path + htmlFileName + "_FINALE.docx";
htmlToWordTemplate(docxTemplate,htmlFile,outpuFileName); ...