大家好,又见面了,我是你们的朋友全栈君。
最近碰到这个问题,网上搜了一圈,都是什么unzip -O,一点用都没有,这些哥们估计是直接复制,用都没用过。
后来找了个终极方法,用python的脚本来解压,试了下,还真管用!!!
以下为python脚本的代码,新建文件jieya.py,写入以下代码:
=============================================================
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import zipfile
print "Processing File " + sys.argv[1]
file=zipfile.ZipFile(sys.argv[1],"r");
for name in file.namelist():
utf8name=name.decode('gbk')
print "Extracting " + utf8name
pathname = os.path.dirname(utf8name)
if not os.path.exists(pathname) and pathname!= "":
os.makedirs(pathname)
data = file.read(name)
if not os.path.exists(utf8name):
fo = open(utf8name, "w")
fo.write(data)
fo.close
file.close()
=============================================================
然后zip文件跟jieya.py放在同一级目录,运行命令python jieya.py file.zip,哦了!
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/146077.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...