当前位置:   article > 正文

文件内容找不同并生成报告(每天一个python小项目)_python实例 实现文件对比分析并生成报告

python实例 实现文件对比分析并生成报告
import difflib
import tkinter as tk
import tkinter.filedialog
#打开文件
def button1():
  global file1
  file1=tk.filedialog.askopenfilename()
  txt_path1.set(file1)
#打开文件
def button2():
  global file2
  file2=tk.filedialog.askopenfilename()
  txt_path2.set(file2)
#对比文件
def Diff():
  with open(file1, encoding='UTF-8') as f1,open(file2, encoding='UTF-8') as f2: # 防止读入文件中文乱码
    text1 = f1.readlines()
    text2 = f2.readlines()
  d = difflib.HtmlDiff()
  with open('G:/code/043/result.html','w', encoding='UTF-8') as f: # 防止输出文件中文乱码
    f.write(d.make_file(text1,text2))

#建立主窗口window
window = tk.Tk()
#设置窗口标题栏名称
window.title('用Python实现文件对比分析')
#设置窗口的大小
window.geometry('650x200')
# 在主窗口添加标签
label = tk.Label(window, text='请选择需要对比的文件:',fg='blue',font=('Arial', 12)).place(x=30, y=30)
l1 = tk.Label(window, text='原文件:', font=('Arial', 12)).place(x=30, y=80)
l2 = tk.Label(window, text='目标文件:', font=('Arial', 12)).place(x=30, y=110)
# 在主窗口添加文本框
txt_path1 = tk.StringVar()
text1 = tk.Entry(window,textvariable=txt_path1, show = None,width=60)
txt_path2= tk.StringVar()
text2 = tk.Entry(window,textvariable=txt_path2,show = None,width=60)
text1.place(x=120,y=80)
text2.place(x=120,y=110)
# 在主窗口添加命令按钮
button1 = tk.Button(window,width=8, height=1,text='选择文件',bg='skyblue',command=button1).place(x=550, y=80)
button2 = tk.Button(window,width=8, height=1,text='选择文件',bg='skyblue',command=button2).place(x=550, y=110)
button3 = tk.Button(window,width=20, height=1,text='文件对比',fg='red',bg='orange',command=Diff).place(x=220, y=150)
# 主窗口循环显示
window.mainloop()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

运行结果:
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/798122
推荐阅读
相关标签
  

闽ICP备14008679号