【异常】End-of-central-directory signature not found. Either this file is not a zipfile, or

1. 问题描述

  1. unzip 解压 123.zip 文件时,异常提示如下:
    Archive: dataset_test_rgb.zip
    End-of-central-directory signature not found. Either this file is not
    a zipfile, or it constitutes one disk of a multi-part archive. In the
    latter case the central directory and zipfile comment will be found on
    the last disk(s) of this archive.
    unzip: cannot find zipfile directory in one of dataset_test_rgb.zip or
    dataset_test_rgb.zip.zip, and cannot find dataset_test_rgb.zip.ZIP, period.

2. 解决方法

不使用 unzip 命令解压zip 文件,改用 jar 解压文件。

  1. 先安装 jar
sudo apt-get install fastjar
  1. 使用 jar 解压
jar xvf 123.zip 

3. 原因分析

不清楚


版权声明:本文为weixin_42419002原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。