我想从我的SD卡打开一个ods文件。文件对象返回"文件存在"。
我的整个测试片段是
final String fileName = Environment.getExternalStorageDirectory() + "/file.ods";
final File file = new File(fileName);
final SpreadSheet spreadSheet = SpreadSheet.createFromFile(file);
最后一行在 org.jdocument.dom.ODPackage $ 1.processEntry 处抛出 java.lang.ExceptionInInitilializerError 。
这是因为Android中的小型XML库吗?
PS:我使用 jOpenDocument-1.2.jar 作为外部库。
PPS:我的ODS文件是由Google云端硬盘创建的。