管理将.zip文件下载到手机上的文件系统。但过了一会儿意识到我找不到如何解压缩该文件的方法。正如我试过的那样:
第一个人在要求后立即死亡,得到错误“无法读取未定义的属性'解压缩'”(仔细按照说明)
第二个死了,因为它依赖于codrova端口来反应原生,但也不起作用。
有任何解决这些问题的建议或方法吗?
使用react-native 0.35,使用android 5.1.1在Note4上进行测试。
答案 0 :(得分:1)
我最终管理好了解决问题:
使用react-native-zip-archive
解决方案是更改内部代码: RNZipArchiveModule.java文件位于模块内部
需要应用的更改写在以下评论中: https://github.com/plrthink/react-native-zip-archive/issues/14#issuecomment-261712319
因此,胡家德扬解决了问题。
答案 1 :(得分:0)
转到这个方向: node_modules \ react-native-zip-archive \ android \ src \ main \ java \ com \ rnziparchive \ RNZipArchiveModule.java
并替换此代码而不是解压缩方法
public static void customUnzip(File zipFile, File targetDirectory) throws IOException {
ZipInputStream zis = new ZipInputStream(
new BufferedInputStream(new FileInputStream(zipFile)));
try {
ZipEntry ze;
int count;
byte[] buffer = new byte[8192];
while ((ze = zis.getNextEntry()) != null) {
File file = new File(targetDirectory, ze.getName());
File dir = ze.isDirectory() ? file : file.getParentFile();
if (!dir.isDirectory() && !dir.mkdirs())
throw new FileNotFoundException("Failed to ensure directory: " +
dir.getAbsolutePath());
if (ze.isDirectory())
continue;
FileOutputStream fout = new FileOutputStream(file);
try {
while ((count = zis.read(buffer)) != -1)
fout.write(buffer, 0, count);
} finally {
fout.close();
}
/* if time should be restored as well
long time = ze.getTime();
if (time > 0)
file.setLastModified(time);
*/
}
} finally {
zis.close();
}
}
//**************************
@ReactMethod
public void unzip(final String zipFilePath, final String destDirectory, final String charset, final Promise promise) {
new Thread(new Runnable() {
@Override
public void run() {
try {
customUnzip(new File(zipFilePath ) , new File(destDirectory));
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}