• python bytes to string


    python bytes 转化成 string 会遇到如下错误:

    codec can't decode byte 0xff in position 5: illegal multibyte sequence

    其实还是编码格式的问题,通过使用: ok_cookies = ok_str.decode('iso-8859-1')

    ok_str = b'\x00\x01\x00\x00\x00\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x06\x01\x00\x00\x00\x83\x02JSESSIONID=T2yrYjqcymFWppsLlJRlLkKv12MFvN2XTn90LJP4d8C22bp989pb!1246418420;BIGipServerpool_xwqy=FCvoaVAFKNbKjaDKHq0URsieemJ3jdG54/DLz9FGInF+UEiDGYTJHurg+SIiST4VX9D2VdgYcwvVZ9g=;ipcrs=L7Ng5mBsLk+NqWHttzF8QSOrXK1n1gnYWmBMzGZ2Nsg0/pvY+VVMmy25y6wW1B7yR2NMBOEeTxcB\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
    
    ok_cookies = ok_str.decode()  # 'utf-8' codec can't decode byte 0xff in position 5: invalid start byte
    
    ok_cookies = ok_str.decode('gbk')  # 'gbk' codec can't decode byte 0xff in position 5: illegal multibyte sequence
    
    ok_cookies = ok_str.decode('iso-8859-1') # 可以解决
    

      

  • 相关阅读:
    Web前端性能优化-资源合并与压缩
    关于 ES5 & ES6 数组遍历的方法
    代码优化
    解决 Vue 刷新页面后 store 数据丢失的问题
    Lombok
    Dao 与 Dto
    物理删除与逻辑删除的区别
    Java 创建对象的几种方式
    SSM + SpringBoot 常用注解
    Json Web Token (JWT)
  • 原文地址:https://www.cnblogs.com/leohao/p/6229912.html
Copyright © 2020-2023  润新知