error: invalid compressed data to inflate file #14: bad zipfile offset (local header sig):

原因是:zip文件太大,不能直接使用unzip name.zip的命令进行解压;

解决方案:

1. 看到CSDN上一篇博客说使用jar xvf full.zip这个命令进行解压,实测可以;

2. stateoverflow上有一种方案是:zip -F file.zip --out file-large.zip 然后再使用命令 unzip file-large.zip 就可以了,不过效果未知,都可以试试。

你可能感兴趣的:(error: invalid compressed data to inflate file #14: bad zipfile offset (local header sig):)