python问题:TypeError: a bytes-like object is required, not 'str'

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python问题:TypeError: a bytes-like object is required, not 'str'相关的知识,希望对你有一定的参考价值。

 

源程序:

import socket

target_host = "www.baidu.com" # 127.0.0.1
target_port = 80

# 建立一个socket对象
client = socket.socket(socket.AF_INET,socket.SOCK_STREAM) # 创建TCP连接

# 连接客户端
client.connect((target_host,target_port))

client.send("GET / HTTP/1.1\r\nHost: baidu.com\r\n\r\n")

错误背景:程序想创建一个TCP连接,在发送数据的时候报错,表明send函数需要传byte类型值。

类型错误:TypeError: a bytes-like object is required, not ‘str‘

解决方法:

1、在数据前面加b,强制转换

client.send(b"GET / HTTP/1.1\r\nHost: baidu.com\r\n\r\n")

2、发送数据的时候进行编码

client.send(("GET / HTTP/1.1\r\nHost: baidu.com\r\n\r\n").encode())

 

这里我看了一篇前人MrYx的文章,说的很好 http://blog.csdn.net/yexiaohhjk/article/details/68066843

以上是关于python问题:TypeError: a bytes-like object is required, not 'str'的主要内容,如果未能解决你的问题,请参考以下文章

Python: TypeError: 'dict' object is not callable

Python: TypeError: 'dict' object is not callable

Python 3.5 TypeError:参数有多个值[重复]

python问题:TypeError: a bytes-like object is required, not 'str'

TypeError:预期的整数参数,浮点数,带pygame的python 3.6.3

Python错误TypeError: write() argument must be str, not bytes