base64编码超长的情况下。解码问题
Posted 小~yytt~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了base64编码超长的情况下。解码问题相关的知识,希望对你有一定的参考价值。
第一种解码的方式
import base64
strg = data[6]
lens = len(strg)
lenx = lens - (lens % 4 if lens % 4 else 4)
try:
result = base64.decodestring(strg[:lenx])
print(result)
except:
pass
第二种解码的方式
dd = base64.b64decode(strg)
print dd
使用的第一种解码的方式。我发现数据中。少了一个“}”
使用第二种方式的解码。数据是完整的
纠正一下超长的字符串base64解码的问题。可使用第二种的方式
以上是关于base64编码超长的情况下。解码问题的主要内容,如果未能解决你的问题,请参考以下文章