Linux 下,使用unzip解壓時,報錯:
$ unzip abc.zip
Archive: abc.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 abc.zip or
abc.zip.zip, and cannot find abc.zip.ZIP, period.
用jar 來解
$ jar xvf abc.zip
如果出現(xiàn)
jar:Command not found
要用yum下載
$ yum -y install java-1.6.0-openjdk-devel
安裝時間也就兩三分鐘
安裝完畢再次運行
再次運行
$ jar xvf abc.zip