我试图使用以下行来管道子进程:
p.communicate("insert into egg values ('egg');"); TypeError: must be bytes or buffer,not str
如何将字符串转换为缓冲区?
解决方法
正确的答案是:
p.communicate(b"insert into egg values ('egg');");
注意前导b,告诉你这是一串字节,而不是一串unicode字符.另外,如果你正在从一个文件中读取它:
value = open('thefile','rt').read() p.communicate(value);
改为:
value = open('thefile','rb').read() p.communicate(value);
再次注意’b’.
现在,如果你的值是一个字符串,你可以从一个只返回字符串的API得到,不管是什么,那么你需要对它进行编码.
p.communicate(value.encode('latin-1');
Latin-1,因为与ASCII不同,它支持所有256字节.但是说,在unicode中使用二进制数据是要求麻烦.如果您从一开始就可以使其成为二进制,则会更好.