如何将 Python 控制台输出重定向到 QTextBox
我正在开发一个用于重新编译 Linux 内核的 GUI。为此,我需要从 Python 实现 4-5 个 Linux 命令。我使用 Qt 作为 GUI 设计器。我已使用 os.system() 调用成功实现了命令。但输出是在控制台获得的。真正的问题是命令的输出是一个列表,需要几乎 20-25 分钟的连续打印。我们如何将此控制台输出传输到 Qt 中设计的文本框。任何人都可以帮助我在 Qt 中使用源作为实时控制台输出来实现 setSource() 操作。
I'm working on developing a GUI for the recompilation of Linux kernel. For this I need to implement 4-5 Linux commands from Python. I use Qt as GUI designer. I have successfully implemented the commands using os.system()
call. But the output is obtained at the console. The real problem is the output of command is a listing that takes almost 20-25 min continuous printing. How we can transfer this console output to a text box designed in Qt. Can any one help me to implement the setSource()
operation in Qt using source as the live console outputs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我来说工作做得很好。谢谢大家。
This did the work quite good for me. thank you all.
我主要处理 wxPython,但是 http://diotavelli.net/PyQtWiki/Capturing_Output_from_a_Process 是一个解决方案会起作用吗?
从页面:
I mostly deal with wxPython, but is http://diotavelli.net/PyQtWiki/Capturing_Output_from_a_Process a solution that would work?
From the page:
我想到了使用管道。您可以使用后台线程来读取程序的输出(并在添加新行时将事件发送到 GUI)。
所以基本的想法是这样的:
Using a pipe comes to mind. You could use a background thread that reads the output of the program (and sends events to the GUI whenever a new line is added).
So the basic idea is this: