python,socket通信编程,文件上传例子
写一个file_receive.py和一个file_send.py程序,由file_send.py上传一个文件,file_receive.py接收上传的文件,写到指定的包内
#file_receive.pyimport socket,subprocess,os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
sk = socket.socket()
address = (‘127.0.0.1‘,8001)
sk.bind(address)
sk.listen(3)
conn,addr = sk.accept()
fileinfo = conn.recv(1024)
filename,filesize = str(fileinfo,‘utf8‘).split(‘|‘)
#filename = str(filename,‘utf8‘)
#filesize = int(str(filesize,‘utf8‘))
path = os.path.join(BASE_DIR,‘file_recv‘,filename)
f = open(path,‘wb‘)
has_received = 0
while has_received != int(filesize):
data = conn.recv(1024)
f.write(data)
has_received += len(data)
f.close()
print(‘well done‘)
sk.close()#file_send.py
import socket,os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
sk = socket.socket()
address = (‘127.0.0.1‘,8001)
sk.connect(address)
filename = input("please input filename:")
path = os.path.join(BASE_DIR,filename)
filesize = os.stat(path).st_size
fileinfo = ‘%s|%s‘%(filename,str(filesize))
sk.sendall(bytes(fileinfo,‘utf8‘))
f = open(path,‘rb‘)
has_sent = 0
while has_sent != int(filesize):
data = f.read(1024)
sk.sendall(data)
has_sent += len(data)
print(‘well done!‘)
f.close()
sk.close()文件运行后,实现了将file_send.py上传的test.png文件上传到当前路径下的file_recv包内.
相关推荐
MAC2007 2020-06-06
83530391 2020-04-09
snowman 2013-06-06
helen 2019-06-28
lankk的魔法书札 2019-06-27
浪里xiao白龙 2019-06-27
SeetyST 2012-07-09
futurezone 2012-04-07
邮件服务器配置 2011-05-23
mojianc 2011-06-07
wangbaishilibi 2014-06-04
PHP100 2019-03-28
PHP100 2019-03-28
辍耕录 2018-01-26
学习编程 2018-01-26
手机APP开发 2017-03-16