Socket send() method throws TypeError: a bytes-like object is required, not 'str'
Posted lzhd24
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Socket send() method throws TypeError: a bytes-like object is required, not 'str'相关的知识,希望对你有一定的参考价值。
python3 socket编程,发送data数据,会遇到需要bytes类型,而不是str字符串的错误
例如:
import socket
mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
host = socket.gethostbyname("www.google.com")
mysock.connect(host, 80)
message = "GET / HTTP/1.1 "
mysock.sendall(message)
data=mysock.recv(1000)
mysock.close()
解决办法:
import socket
mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
host = socket.gethostbyname("www.google.com")
mysock.connect((host, 80))
message = "GET / HTTP/1.1 "
mysock.sendall(message.encode())
data=mysock.recv(1000)
mysock.close()
只需要在string类型的data发送之前encode一下即可,接收也是一样
before sending message through socket encode it.
sc.send(message.encode())
after receiving decode it:
message.decode()
相关知识:
Python 3最重要的新特性之一是对字符串和二进制数据流做了明确的区分。文本总是Unicode,由str类型表示,二进制数据则由bytes类型表示。Python 3不会以任意隐式的方式混用str和bytes,你不能拼接字符串和字节流,也无法在字节流里搜索字符串(反之亦然),也不能将字符串传入参数为字节流的函数(反之亦然)。
参考链接:https://www.cnblogs.com/chownjy/p/6625299.html
以上是关于Socket send() method throws TypeError: a bytes-like object is required, not 'str'的主要内容,如果未能解决你的问题,请参考以下文章
socket.io - socket.emit、socket.on、socket.send