Hello all,
I was able to successfully combine all docx files using alt + chunk method by googling. However when I convert to pdf only the first document is exported.
Any ideas. No errors in the log
Thanks
public static InputStream mergeDocx(final List<InputStream> streams) throws Docx4JException, IOException, Exception {
WordprocessingMLPackage target = null;
final File generated = File.createTempFile("generated", ".docx");
int chunkId = 0;
Iterator<InputStream> it = streams.iterator();
while (it.hasNext()) {
InputStream is = it.next(); ...