I have converted docx file to html since its a Zipped format. but i have to convert the doc files too.Is there any way to change the doc file to docx file through code(prefer java).Please help me.Thanks in advance.
Asked
Active
Viewed 3,275 times
2 Answers
0
You should try using APACHE POI
It will provide you functionality to get data from DOC file and you can directly operate on it without converting it to DOCX.
And to convert DOC file to HTML look at this: convert-word-doc-to-html-programmatically-in-java
Hope this helps.