首页 > 代码库 > python进行base64编解码
python进行base64编解码
[转]
直接上代码
import base64fin = open(r"D:\2.zip", "rb")fout = open(r"D:\2.x.txt", "w")base64.encode(fin, fout)fin.close()fout.close()fin = open(r"D:\2.x.txt", "r")fout = open(r"D:\2.x.zip", "wb")base64.decode(fin, fout)fin.close()fout.close()
另外
decode(input, output) Decode a file. decodestring(s) Decode a string. encode(input, output) Encode a file. encodestring(s) Encode a string into multiple lines of base-64 data.
python进行base64编解码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。