您好,登錄后才能下訂單哦!
本文實例講述了Python udp網(wǎng)絡(luò)程序?qū)崿F(xiàn)發(fā)送、接收數(shù)據(jù)功能。分享給大家供大家參考,具體如下:
1. udp網(wǎng)絡(luò)程序-發(fā)送數(shù)據(jù)
創(chuàng)建一個基于udp的網(wǎng)絡(luò)程序流程很簡單,具體步驟如下:
代碼如下:
#coding=utf-8 from socket import * # 1. 創(chuàng)建udp套接字 udp_socket = socket(AF_INET, SOCK_DGRAM) # 2. 準備接收方的地址 # '192.168.1.103'表示目的ip地址 # 8080表示目的端口 dest_addr = ('192.168.1.103', 8080) # 注意 是元組,ip是字符串,端口是數(shù)字 # 3. 從鍵盤獲取數(shù)據(jù) send_data = input("請輸入要發(fā)送的數(shù)據(jù):") # 4. 發(fā)送數(shù)據(jù)到指定的電腦上的指定程序中 udp_socket.sendto(send_data.encode('utf-8'), dest_addr) # 5. 關(guān)閉套接字 udp_socket.close()
運行現(xiàn)象:
在Ubuntu中運行腳本:
在windows中運行“網(wǎng)絡(luò)調(diào)試助手”:
2. udp網(wǎng)絡(luò)程序-發(fā)送、接收數(shù)據(jù)
#coding=utf-8 from socket import * # 1. 創(chuàng)建udp套接字 udp_socket = socket(AF_INET, SOCK_DGRAM) # 2. 準備接收方的地址 dest_addr = ('192.168.236.129', 8080) # 3. 從鍵盤獲取數(shù)據(jù) send_data = input("請輸入要發(fā)送的數(shù)據(jù):") # 4. 發(fā)送數(shù)據(jù)到指定的電腦上 udp_socket.sendto(send_data.encode('utf-8'), dest_addr) # 5. 等待接收對方發(fā)送的數(shù)據(jù) recv_data = udp_socket.recvfrom(1024) # 1024表示本次接收的最大字節(jié)數(shù) # 6. 顯示對方發(fā)送的數(shù)據(jù) # 接收到的數(shù)據(jù)recv_data是一個元組 # 第1個元素是對方發(fā)送的數(shù)據(jù) # 第2個元素是對方的ip和端口 print(recv_data[0].decode('gbk')) print(recv_data[1]) # 7. 關(guān)閉套接字 udp_socket.close()
python腳本:
網(wǎng)絡(luò)調(diào)試助手截圖:
更多關(guān)于Python相關(guān)內(nèi)容可查看本站專題:《Python Socket編程技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門與進階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設(shè)計有所幫助。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。