2006年08月03日 星期四 00:24
在GET一个网页的时候 会提交这样的一个头部 Accept-Encoding: gzip, deflate 它返回的结果是经过了压缩的 都是乱码 如何把它解压缩? 试过用zlib包 不过似乎不行 求助哦! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060803/4b6f6384/attachment.html
2006年08月03日 星期四 08:52
> > 在GET一个网页的时候 会提交这样的一个头部 Accept-Encoding: gzip, deflate > 它返回的结果是经过了压缩的 都是乱码 如何把它解压缩? > 试过用zlib包 不过似乎不行 > 求助哦! > import gzip gzip.GzipFile( fileobj=StringIO ( content ) ).read() 正好也在做这方面的东西 :) -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060803/20a6912d/attachment.html
2006年08月03日 星期四 08:56
各位好哦: 我是做IC前端设计的,刚刚接触python,以前有用过perl,不知道大家谁有入门的资料和实例可以发给我么? 谢谢! _________________________________________________________________ 率先尝试 Windows Live Mail。 http://ideas.live.com/programpage.aspx?versionId=5d21c51a-b161-4314-9b0e-4911fb2b2e6d -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060803/76c2c24e/attachment.htm
2006年08月03日 星期四 09:53
多谢楼上的大哥 可以啦 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060803/e058ab54/attachment.htm
2006年08月03日 星期四 10:40
def ungzip(zippedstr): """从gzip压缩过的字符串解压出原字符串""" sio=StringIO.StringIO(zippedstr) fgz=gzip.GzipFile(fileobj=sio) data=fgz.read() return data
Zeuux © 2025
京ICP备05028076号