Python中的ZipFile模块出现错误的幻数错误
Posted
技术标签:
【中文标题】Python中的ZipFile模块出现错误的幻数错误【英文标题】:Bad magic number error with ZipFile module in Python 【发布时间】:2011-10-09 12:55:33 【问题描述】:我在 Windows 7(64 位)上使用 Python 2.7。 当我尝试使用 ZipFile 模块解压缩 zip 文件时,出现以下错误:-
Traceback (most recent call last):
File "unzip.py", line 8, in <module>
z.extract(name)
File "C:\Python27\lib\zipfile.py", line 950, in extract
return self._extract_member(member, path, pwd)
File "C:\Python27\lib\zipfile.py", line 993, in _extract_member
source = self.open(member, pwd=pwd)
File "C:\Python27\lib\zipfile.py", line 897, in open
raise BadZipfile, "Bad magic number for file header"
zipfile.BadZipfile: Bad magic number for file header
WinRAR 可以很好地提取我尝试提取的文件。
这是我用来从myzip.zip
提取文件的代码
from zipfile import ZipFile
z = ZipFile('myzip.zip') //myzip.zip contains just one file, a password protected pdf
for name in z.namelist():
z.extract(name)
此代码适用于我使用 WinRAR 创建的许多其他 zip 文件,但 myzip.zip
我尝试在Python27\Lib\zipfile.py
中评论以下行:-
if fheader[0:4] != stringFileHeader:
raise BadZipfile, "Bad magic number for file header"
但这并没有真正帮助。运行我的代码,我的 shell 上有一些转储。
【问题讨论】:
【参考方案1】:正确的 ZIP 文件总是以“\x50\x4B\x03\x04”开头。您可以使用以下代码测试文件是否真的是 ZIP 文件:
with open('/path/to/file', 'rb') as MyZip:
print(MyZip.read(4))
它会打印文件头以便你检查。
更新 奇怪,testzip() 和所有其他功能都很好用。你试过这样的代码吗?
with zipfile.GzipFile('/path/to/file') as Zip:
for ZipMember in Zip.infolist():
Zip.extract(ZipMember, path='/dir/where/to/extract', pwd='your-password')
【讨论】:
@petr-viktorin 是的,它是一个 zip。上面的代码给出了PK♥♦
作为输出。
嗯。您能否将您的文件放在任何服务器上,以便我查看并尝试打开它?
看原来的答案,我又发了一个想法。
嗯,我无法使用 Ark 从您的文件中提取 pdf。更正确的是,它会提取大小为 0 KiB 的空文件。
Python 的 zipfile 目前只支持 DEFLATE 方法。看来你是用其他方法用 WinRar 创建文件的,所以 zipfile 只能读取文件,不能解压。【参考方案2】:
确保您真正打开的是 ZIP 文件,而不是例如扩展名为 .zip 的 RAR 文件。正确的 zip 文件有一个标题,在这种情况下没有找到。
zipfile
模块只能打开 zip 文件。 WinRAR 也可以打开其他格式,它可能会忽略文件名而只查看文件本身。
【讨论】:
以上是关于Python中的ZipFile模块出现错误的幻数错误的主要内容,如果未能解决你的问题,请参考以下文章