快速项目摘要:使用Tkinter创建一个python小部件,显示来自多个json和txt文件的数据。需要在Windows中工作。 我在哪里:使用json文件,一切都很顺利。但是我遇到了txt文件的问题。我可以使用以下代码解析我需要的信息:
from Tkinter import *
import re
results = open("sample_results.txt", "r")
for line in results:
if re.match("(.*)test(.*)", line):
print line
if re.match("(.*)number(.*)", line):
print line
if re.match("(.*)status(.*)", line):
print line
if re.match("(.*)length(.*)", line):
print line
问题:它显示命令shell中的所有数据,而不是单独的小部件。
我想简单地将所有这些信息从命令shell移动到文本框小部件(或tkmessage小部件,但我觉得文本框更合适)。一个很长的谷歌搜索过程给了我很多不起作用的代码 - 任何提示?谢谢!
注意:这不是所有代码 - 只是我需要帮助修复的部分
答案 0 :(得分:3)
这就是我想你想要的。您希望应用程序打开文件并解析它们。对于每个已解析的行,您希望它将文本(或附加文本)插入到文本控件中。我会为每种文件类型创建一个方法来进行解析。然后我会遍历每个文件并根据需要调用解析器。完成解析后,可以调用
self.textbox.insert(tkinter.END, parsed_text)
另一种方法是将stdout重定向到文本控件,然后打印解析后的行。我发现后一种方法更灵活,特别是当我想用子进程调用一个单独的程序并逐位读取它的输出时。以下是使用Tkinter进行此操作的一种方法:
import ScrolledText
import sys
import tkFileDialog
import Tkinter
########################################################################
class RedirectText(object):
""""""
#----------------------------------------------------------------------
def __init__(self, text_ctrl):
"""Constructor"""
self.output = text_ctrl
#----------------------------------------------------------------------
def write(self, string):
""""""
self.output.insert(Tkinter.END, string)
########################################################################
class MyApp(object):
""""""
#----------------------------------------------------------------------
def __init__(self, parent):
"""Constructor"""
self.root = parent
self.root.title("Redirect")
self.frame = Tkinter.Frame(parent)
self.frame.pack()
self.text = ScrolledText.ScrolledText(self.frame)
self.text.pack()
# redirect stdout
redir = RedirectText(self.text)
sys.stdout = redir
btn = Tkinter.Button(self.frame, text="Open file", command=self.open_file)
btn.pack()
#----------------------------------------------------------------------
def open_file(self):
"""
Open a file, read it line-by-line and print out each line to
the text control widget
"""
options = {}
options['defaultextension'] = '.txt'
options['filetypes'] = [('all files', '.*'), ('text files', '.txt')]
options['initialdir'] = '/home'
options['parent'] = self.root
options['title'] = "Open a file"
with tkFileDialog.askopenfile(mode='r', **options) as f_handle:
for line in f_handle:
print line
#----------------------------------------------------------------------
if __name__ == "__main__":
root = Tkinter.Tk()
root.geometry("800x600")
app = MyApp(root)
root.mainloop()
答案 1 :(得分:0)
一种方法是使用简单的tkinter标签:
# somewhere in your main class, I suppose:
self.log_txt = tkinter.StringVar()
self.log_label = tkinter.Label(self.inputframe, textvariable=self.log_txt, justify=tkinter.LEFT)
self.log_label.pack(anchor="w")
然后,将文本放入该标签的一种非常简单的方法:
def log(self, s):
txt = self.log_txt.get() + "\n" + s
self.log_txt.set(txt)
或者,您可以使用tkinter.Text小部件。在这种情况下,您可以使用insert方法插入文本:
self.textbox = tkinter.Text(parent)
self.textbox.insert(tkinter.END, "some text to insert")
我喜欢的一种资源是http://effbot.org/tkinterbook/text.htm。不幸的是,很难从那个文本转到使用Python代码:(
答案 2 :(得分:0)
这是一个小例子程序,带有一个丑陋的小tkinter GUI,可以将文本添加到文本框中:
#!/usr/bin/env python
try:
import tkinter
except ImportError:
import Tkinter as tkinter
import _tkinter
import platform
class TextBoxDemo(tkinter.Tk):
def __init__(self, parent):
tkinter.Tk.__init__(self, parent)
self.parent = parent
self.wm_title("TextBoxDemo")
self.textbox = tkinter.Text(self)
self.textbox.pack()
self.txt_var = tkinter.StringVar()
self.entry = tkinter.Entry(self, textvariable=self.txt_var)
self.entry.pack(anchor="w")
self.button = tkinter.Button(self, text="Add", command=self.add)
self.button.pack(anchor="e")
def add(self):
self.textbox.insert(tkinter.END, self.txt_var.get())
if __name__ == '__main__':
try:
app = TextBoxDemo(None)
app.mainloop()
except _tkinter.TclError as e:
if platform.system() == 'Windows':
print(e)
print("Seems tkinter will not run; try running this program outside a virtualenv.")