我在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& libs文件夹中的xmlbeans jar。
当我运行这个时,我收到错误无法执行dex:方法ID不在[0,0xffff]中:65536
谷歌搜索,我得到了有关将jar转换为dex的信息。
没有dex是可能的docx阅读?即使我不想要xlsx& pptx包的poi。
我想要隐蔽的doc和docx文件。是否有任何单独的代码仅用于doc& docx转换。
由于