Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

I am trying to show the PDF & .DOC files in android. I am able to show PDF files, but I have problem to show the .DOC, .DOCX, .PPT and .xls files. With the help of WORD-EXTRACTOR we can fetch the text of the doc file but the problem is it only gives text not images from .doc file.

I searched to convert the doc file to PDF file but didn't succeed. Is it possible to convert the .doc files to PDF on device ?

If we want to show the .doc or .docx document in the android devices so which library is useful to do so? Any suggestions?

share|improve this question
1  
in theory this is possible but I don't know of any library to do this on android. – Yahia Apr 2 '12 at 10:11
i searched & i found that it can fetch the data from doc n can create pdf using wordextractor but it looks like it is paragraph.. – S.K. Apr 2 '12 at 10:13
1  
word-extractor is not made for what you want... – Yahia Apr 2 '12 at 10:14
ya i read its specification... it gives us all the text from the file..... which is better. 1. to convert .doc to pdf or 2. to render .doc file seprately..???? – S.K. Apr 2 '12 at 10:16
cant you use java libraries? vogella.de/blog/2010/02/11/java-library-jar-android – kommradHomer Apr 5 '12 at 11:44
show 3 more comments

marked as duplicate by casperOne Apr 17 at 12:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted
+50

i suggest you do

doc to html
html to pdf

Convert Word doc to HTML programmatically in Java

theres no successful pure java "doc to pdf" but there are good "doc to html" and "html to pdf" ones

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.