用socket接收http响应的数据时,在接收端判断接收的数据长度,如果为0则表示web端发送完毕
do { count = socket.Receive(buffer); } while (count != 0); //接收长度为0的时候,退出循环
web服务端发送什么样的数据,接收端接收的数据长度才为0?
do { count = socket.Receive(buffer); } while (count != 0); //接收长度为0的时候,退出循环
web服务端发送什么样的数据,接收端接收的数据长度才为0?