溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python基于stuck實(shí)現(xiàn)scoket文件傳輸?shù)姆椒?/h1>
發(fā)布時(shí)間:2021-03-11 09:38:12 來源:億速云 閱讀:369 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Python基于stuck實(shí)現(xiàn)scoket文件傳輸?shù)姆椒?,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

使用socket中的struck來實(shí)現(xiàn)客戶端發(fā)送

服務(wù)端:

  客戶端:

# -*- coding: UTF-8 -*-
import socket, time, socketserver, struct, os, _thread
 
host = '127.0.0.1'
port = 12307
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # 定義socket類型
s.bind((host, port)) # 綁定需要監(jiān)聽的Ip和端口號,tuple格式
s.listen(1)
 
 
def conn_thread(connection, address):
  while True:
    try:
      connection.settimeout(600)
      fileinfo_size = struct.calcsize('12sl')#12s表示12個(gè)字符,l表示一個(gè)長整型數(shù)
      buf = connection.recv(fileinfo_size)
      if buf: # 如果不加這個(gè)if,第一個(gè)文件傳輸完成后會(huì)自動(dòng)走到下一句,需要拿到文件大小信息才可以繼續(xù)執(zhí)行
        filename, filesize = struct.unpack('12sl', buf)
        filename_f = filename.decode("utf-8").strip('\00') # C語言中'\0'是一個(gè)ASCII碼為0的字符,在python中表示占一個(gè)位置得空字符
        filenewname = os.path.join('e:\\', os.path.basename(filename_f))
        print(u'文件名稱:%s , 文件大小: %s' % (filenewname, filesize))
        recvd_size = 0 # 定義接收了的文件大小
        file = open(filenewname, 'wb')
        print(u"開始傳輸文件內(nèi)容")
        while not recvd_size == filesize:
          if filesize - recvd_size > 1024:
            rdata = connection.recv(1024)
            recvd_size += len(rdata)
          else:
            rdata = connection.recv(filesize - recvd_size)
            recvd_size = filesize
          file.write(rdata)
        file.close()
        print('receive done')
        # connection.close()
    except socket.timeout:
      connection.close()
 
while True:
  print(u"開始進(jìn)入監(jiān)聽狀態(tài)")
  connection, address = s.accept()
  print('Connected by ', address)
  # thread = threading.Thread(target=conn_thread,args=(connection,address)) #使用threading也可以
  # thread.start()
  _thread.start_new_thread(conn_thread, (connection, address))
s.close()

  服務(wù)端效果:

# -*- coding: UTF-8 -*-
import socket, os, struct
 
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('127.0.0.1', 12307))
while True:
  filepath = input('請輸入要傳輸?shù)奈募^對路徑:\r\n')
  print(type(filepath))
  print(len(filepath.encode("utf-8")))
  if os.path.isfile(filepath):
    #fileinfo_size = struct.calcsize('20sl') # 定義打包規(guī)則
    # 定義文件頭信息,包含文件名和文件大小
    fhead = struct.pack('12sl', filepath.encode("utf-8"), os.stat(filepath).st_size)
    print(os.stat(filepath).st_size)
    s.send(fhead)
    print (u'文件路徑: ', filepath)
    # with open(filepath,'rb') as fo: 這樣發(fā)送文件有問題,發(fā)送完成后還會(huì)發(fā)一些東西過去
    fo = open(filepath, 'rb')
    while True:
      filedata = fo.read(1024)
      if not filedata:
        break
      s.send(filedata)
    fo.close()
    print (u'傳輸成功')
    # s.close()

Python基于stuck實(shí)現(xiàn)scoket文件傳輸?shù)姆椒?></p><p>客戶端效果</p><p><img src=感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Python基于stuck實(shí)現(xiàn)scoket文件傳輸?shù)姆椒ā边@篇文章對大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI