你好,我调用Presentation接口加载ppt格式的加密文件 返回异常:Failed to allocate a 1890619592 byte allocation with 25165824 free bytes and 350MB until OOM, target footprint 60261920, growth limit 402653184
我的调用方式:
Presentation presentation = new Presentation();
presentation.loadFromFile(strPath);
presentation.encrypt("123");
2、使用下面这种方式也是打不开加密的ppt文件
Presentation presentation = new Presentation();
presentation.loadFromFile(strPath, FileFormat.PPT,"123");
presentation.saveToFile(localFile.getPath(), FileFormat.PPT);