I need to download file .docx from url and save it as .doc on external memory on android. I didn't find the way. Can anyone give example of that.
Asked
Active
Viewed 1,015 times
1 Answers
0
It's impossible to do it without any modification to the file, because .docx
and .doc
has different structure.
In this way you will need to process the file by yourself on the Android device. In this way you may find helpful the Apache POI library for Java for working with Microsoft Documents.
Apache POI - HWPF and XWPF - Java API to Handle Microsoft Word Files

ivan.mylyanyk
- 2,051
- 4
- 30
- 37
-
That library is heavy and it works only for doc in android , not for docx documents, but thanks. Now I am trying to find convertor from docx to doc. Any sugestion? – Mikky Aug 29 '14 at 09:35
-
@Mikky http://stackoverflow.com/questions/6664728/convert-doc-file-to-docx-with-java – ivan.mylyanyk Aug 29 '14 at 09:37