在android中是否有.docx和.doc查看器的小部件

时间:2018-01-03 12:26:33

标签: android apache-poi

我使用Apache poi lib获取.docx.doc文件的内容

XWPFDocument document = new XWPFDocument(stream);

现在,我正在editText显示doc文件。

List<XWPFParagraph> paragraphs = document.getParagraphs();
for (XWPFParagraph para : paragraphs) {

                   String s = para.getText() ;

                  System.out.println("para__" + s);
                }

我需要一个.docx和.doc查看器来显示我的应用程序的内容,(即)一个视图。 我不想再在edittext中显示它了。 有人帮助我

0 个答案:

没有答案