您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“怎么用Python實(shí)現(xiàn)多任務(wù)版的udp聊天器”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“怎么用Python實(shí)現(xiàn)多任務(wù)版的udp聊天器”吧!
1、編寫一個(gè)有2個(gè)線程的程序。
2、線程1用來(lái)接收數(shù)據(jù)然后顯示。
3、線程2用來(lái)檢測(cè)鍵盤數(shù)據(jù)然后通過(guò)udp發(fā)送數(shù)據(jù)。
import socket import threading def send_msg(udp_socket): """獲取鍵盤數(shù)據(jù),并將其發(fā)送給對(duì)方""" while True: # 1. 從鍵盤輸入數(shù)據(jù) msg = input("\n請(qǐng)輸入要發(fā)送的數(shù)據(jù):") # 2. 輸入對(duì)方的ip地址 dest_ip = input("\n請(qǐng)輸入對(duì)方的ip地址:") # 3. 輸入對(duì)方的port dest_port = int(input("\n請(qǐng)輸入對(duì)方的port:")) # 4. 發(fā)送數(shù)據(jù) udp_socket.sendto(msg.encode("utf-8"), (dest_ip, dest_port)) def recv_msg(udp_socket): """接收數(shù)據(jù)并顯示""" while True: # 1. 接收數(shù)據(jù) recv_msg = udp_socket.recvfrom(1024) # 2. 解碼 recv_ip = recv_msg[1] recv_msg = recv_msg[0].decode("utf-8") # 3. 顯示接收到的數(shù)據(jù) print(">>>%s:%s" % (str(recv_ip), recv_msg)) def main(): # 1. 創(chuàng)建套接字 udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # 2. 綁定本地信息 udp_socket.bind(("", 7890)) # 3. 創(chuàng)建一個(gè)子線程用來(lái)接收數(shù)據(jù) t = threading.Thread(target=recv_msg, args=(udp_socket,)) t.start() # 4. 讓主線程用來(lái)檢測(cè)鍵盤數(shù)據(jù)并且發(fā)送 send_msg(udp_socket) if __name__ == "__main__": main()
到此,相信大家對(duì)“怎么用Python實(shí)現(xiàn)多任務(wù)版的udp聊天器”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。