尝试在 Python 上使用套接字构建简单的文件传输。我被卡住了,似乎我无法发送文件的任何部分。
根据一些建议,我尝试发送文件的最后一行,以便知道何时完成连接。
但碰巧的是,一旦我发送了第一个包裹,客户就永远不会得到剩下的。
在这里你会看到我的代码(服务器端):
import os
import socket
PORT = 8080
HOST = 'localhost'
socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socket.bind((HOST,PORT))
socket.listen(10)
conn, addr = socket.accept()
print '\033[46m\033[34m\033[1mBienvenido al File Sender v.0.02 hecho en Python. Este programa permite enviar archivos a traves de tu maquina\033[0m'
ANSI_RED = '\033[31m'
ANSI_BLUE = '\033[34m'
ESCAPEANSI = '\033[0m'
def seleccion_path():
PATH = raw_input('\033[34m\033[1mSelect the Path (./ by default)').strip('n')
if PATH == '':
PATH = os.getcwd()
print PATH, ESCAPEANSI
acepta_path = raw_input('\033[34m\033[1mSi o No (S/N)').lower().strip(' ')
if acepta_path == 's' or acepta_path == 'si':
return PATH
else:
seleccion_path()
def filesDir(path):
files = os.listdir(PATH)
for fl in files:
i = int(files.index(fl))+1
print ANSI_RED + str(i)+ ')' + fl
return files
PATH = seleccion_path()
print 'el PATH seleccionado es:', PATH + '\n'
filesDir(PATH)
fileSelected = int(raw_input(ANSI_BLUE + 'Select a file with the number').strip(' ').lower())
print PATH + filesDir(PATH)[fileSelected-1]
fileToSend = open(PATH + filesDir(PATH)[fileSelected-1], 'rb')
qLines = len(open(PATH + filesDir(PATH)[fileSelected-1], 'rb').readlines())
finalLine = cpfileToSend.readlines()[qLines-1]
conn.send(finalLine)
while True:
data = conn.sendall(fileToSend.readline())
conf = conn.recv(1024)
print conf
if conf == 'OK':
conn.close()
fileToSend.close()
break
print '\033[43m File sent'
#Finaliza el programa y deja los codigos ANSI cerrados
print ESCAPEANSI
exit()
这是客户端:
import os
import socket
PORT = 8080
HOST = 'localhost'
socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socket.connect((HOST, PORT))
fname = open('./fileSent.pdf', 'w+')
finalLine = socket.recv(1024)
print finalLine
while True:
strng = socket.recv(2048)
print 'aaaaa',strng
fname.write(strng)
if finalLine in strng:
fname.write(strng)
socket.send('OK')
socket.close()
fname.close()
print 'Data received correctly'
exit()