标题:Python socket问题
只看楼主
cpxuvs
Rank: 3Rank: 3
等 级:论坛游侠
威 望:3
帖 子:45
专家分:142
注 册:2015-12-22
结帖率:85.71%
 问题点数:0 回复次数:0 
Python socket问题
是不是socket的makefile不适合用于互相对话
服务器端
socketclient,clientaddress=socketserver.accept()
clientfile=socketclient.makefile("rw")
clientfile.write("hello world")
line=clientfile.read()//注释这行
客户端
socketclient.connect((host,port))
serverfile=socketclient.makefile("rw")
content=serverfile.read()
print content
serverfile.write("had received")
比如说上面,这样什么输出都没有,
如果把line那行注释掉,就正常了。
按道理说,我把clientfile里面写入helloworld,那么客户端读取content打印输出,然后line读取had received
但是实际上客户端和服务器端都在read,所以卡在那里了。
是不是这样的呢?
搜索更多相关主题的帖子: received content 服务器 hello 客户端 
2016-10-04 13:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-469421-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.142068 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved