我正在尝试将文件从服务器发送到客户端但却出错。请让我知道我在哪里做错了。
这是我的服务器代码:
if msg in data.keys():
print("Requested file exists", msg)
f=open(msg,"rb")
datam= f.read(1024)
while (datam):
if(s.send(datam)):
print "sending data"
datam = f.read(1024)
s.close()
f.close
else:
print("File Not found",msg)
print("File Not found",data.keys())
c.close() # Close the connection
其中msg包含文件所在的路径地址 c =客户端套接字s =服务器套接字 我想读取该文件并将其发送给客户端,但我收到此错误
Got connection from ('127.0.0.1', 42330)
('Requested file exists', '/home/beenish/Pictures/pew.txt')
Traceback (most recent call last):
File "server.py", line 41, in <module>
if(s.send(datam)):
socket.error: [Errno 32] Broken pipe
在客户端,我已编写此代码以接收该文件
s.listen(15)
f = open('\home\beenish\pictures\lol.txt', 'wb')
data = s.recv(1024)
while(data):
f.write(data)
data=s.recv(1024)
f.close()
s.close # Close the socket when done
其中s是客户端套接字
我收到此错误
Traceback (most recent call last):
File "client.py", line 26, in <module>
s.listen(15)
File "/usr/lib/python2.7/socket.py", line 224, in meth
return getattr(self._sock,name)(*args)
socket.error: [Errno 22] Invalid argument
答案 0 :(得分:0)
在客户端,您在此行中出错:
s.listen(15)
并且Python docs表示该参数具有系统相关的最大值,通常为5.因此,尝试找出系统的最大值,只使用较低的值,看看会发生什么。
服务器端错误可能是客户端失败的副作用。
答案 1 :(得分:0)
这是您在致电socket.listen
之前致电socket.bind
时遇到的错误。请注意,服务器始终必须按照特定顺序执行序列socket()
,bind()
,listen()
和accept()
。