Can Anyone help me to convert a .doc file to .docx using apache Tika or with apache POI? I tried a lot of ways but stuck in converting the document to docx format.
Help is appreciated.
Thanks and Regards, Arun R S
Can Anyone help me to convert a .doc file to .docx using apache Tika or with apache POI? I tried a lot of ways but stuck in converting the document to docx format.
Help is appreciated.
Thanks and Regards, Arun R S
I am doing this recently.
And I use aspose words
to convert .doc
to .docx
.
Very convenience.
Document doc = new Document(filePath);
doc.save(descFilePath);
Just two lines.