import socket
import tkinter
from tkinter import filedialog
from tkinter.filedialog import *
def action():
#获取输入框内容
date=entry.get().strip()
date1=int(entry1.get())
date2=int(entry3.get())
b=str(entry2.get().strip())
s=socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
for a in range(date1):
f=open(b,'r')
for line in f.readlines():
s.sendto(line.encode(),(date,date2))
f.close()
def Huofile():
file_path = filedialog.askopenfilename()
filename.set(file_path) #设置filename值,输出的值为io流
#实例化tk类
root = tkinter.Tk()
filename = tkinter.StringVar()
#定义宽高,注意x不是*,+下右 ;250x100是大小;+600+400是距离横纵坐标的位置
root.geometry('400x200+600+300')
# 重新调整弹窗
# root.resizable(False,False)#弹窗大小固定设置
#设置名称
root.title('发包测试')
#设置标签,grid网格布局函数
Label(root,text="请输入ip :",font=('宋体',9)).grid(row=0,column=0)
Label(root,text="请输入端口 :",font=('宋体',9)).grid(row=1,column=0)
Label(root,text="选择文件 :",font=('宋体',9)).grid(row=2,column=0)
Label(root,text="请输入次数 :",font=('宋体',9)).grid(row=3,column=0)
#设置输入框
entry=Entry(root)
entry.grid(row=0,column=1)#输入ip框
entry3=Entry(root)
entry3.grid(row=1,column=1)#输入端口框
entry1=Entry(root)
entry1.grid(row=3,column=1)#输入次数框
entry2=Entry(root,textvariable=filename)
entry2.grid(row=2,column=1)#获取文件路径框
#按钮1
# Button(root,text='确定',width='10').grid(row=0,column=2)
#按钮2
Button(root,text='运行',width='10',command=action).grid(row=3,column=2)
#按钮3
Button(root,text='选择',width='10',command=Huofile).grid(row=2,column=2)
#循环弹窗
root.mainloop()
|