美文网首页
Python解压缩ZIP文件出现乱码问题的解决方案

Python解压缩ZIP文件出现乱码问题的解决方案

作者: 大河马爱吃草 | 来源:发表于2017-09-19 16:10 被阅读0次

    python中的zipfile模块用来解压缩ZIP文件非常方便,但是如果ZIP文件的子文件的文件名里含有中文的话,解压出出来的文件的文件名却是乱码!这到底是为什么呢?

    查看zipfile的源码后,终于找到原因:

    if zinfo.flag_bits & 0x800:
        # UTF-8 filename
        fname_str = fname.decode("utf-8")
    else:
        fname_str = fname.decode("cp437")
    

    原来编码不能被正确识别为utf-8的时候,会被是被识别并decode为cp437编码,如果原来是gbk编码的话就会变成乱码。

    知道是什么原因后,解决的办法也很简单,那就是将文件名先使用cp437编码encode,然后再用gbk编码decode即可,来试试吧!

    import os
    import zipfile
    
    is_zip = zipfile.is_zipfile(filePath)
    if is_zip:
        zip_file_contents = zipfile.ZipFile(filePath, 'r')
        for file in zip_file_contents.namelist():
            filename = file.encode('cp437').decode('gbk')#先使用cp437编码,然后再使用gbk解码
            print(filename)
            zip_file_contents.extract(file,release_file_dir)#解压缩ZIP文件
            os.chdir(release_file_dir)#切换到目标目录
            os.rename(file,filename)#重命名文件
    

    欢迎交流!

    相关文章

      网友评论

          本文标题:Python解压缩ZIP文件出现乱码问题的解决方案

          本文链接:https://www.haomeiwen.com/subject/hiowsxtx.html