2013-08-28 68 views
0

我正在做簡單的docx轉換應用程序在android中。Docx轉換

File file = new File(path + "Sample1.docx"); 
FileInputStream fis = new FileInputStream(file); 

XWPFDocument document = new XWPFDocument(fis); 
XWPFWordExtractor extractor = new XWPFWordExtractor(document); 
String docText = extractor.getText(); 

在我的onCreate方法中添加了上面的代碼行。

包含dom4j,poi3.8,poi-ooxml3.8,poi-xml-schema3.8 & libml文件夾中的xmlbeans jars。

當運行此我得到了錯誤無法執行DEX:不是在方法ID [0,爲0xFFFF]:65536

一派,我得到有關轉換罐子DEX的信息。

用out dex是可能的docx閱讀?即使我不希望xlsx & pptx包的poi。

我只想隱藏doc和docx文件。是否有任何單獨的代碼僅適用於doc & docx轉換。

謝謝

回答

0

我能夠使JWord在Android下工作。像您一樣有許多Apache POI問題(轉換爲Dalvik格式失敗)。