Displaying a MS Word File in View(say TextView) in Android

前端 未结 2 1251
抹茶落季
抹茶落季 2020-12-13 02:32

I want to display a .docx file in a View in Android. The file has mathematical symbols and also images in between the text. I want to display m

2条回答
  •  眼角桃花
    2020-12-13 03:02

    As you mention in your question that you already tried few of library like Jopendocument, OliveDocLibrary and Apache POI but no luck.

    Now I want to modify this code so that I can display MS Word files(.docx) which contain text,images and mathematical symbols in between.

    While research I came across one more library named Tika, which also used to extract data and its support listed documents and even Libra Office where you can read write and manage documents.

    Last suggestion:

    You can achieve by converting, doc to html and html to pdf as mention here.

    To convert doc to html refer stack-overflow answer

提交回复
热议问题