我在test.py(下面)中使用Redir类设置了stdout重定向。
输出应在文本框中显示两个print语句。但目前只有“Output1”被发送到文本框,而“Output2”被打印在控制台后面。
我想知道是否有办法重定向子进程的stdout?我尝试过使用subprocess.PIPE和Redir类本身,但无法正确使用它。
注意:最终,Popen调用不会调用python文件,因此我无法从Test2获取字符串。不幸的是,我还被限制在Python 2.6中。
谢谢!
test.py:
import sys
from Tkinter import *
import subprocess
class Redir(object):
def __init__(self, textbox):
self.textbox = textbox
self.fileno = sys.stdout.fileno
def write(self, message):
self.textbox.insert(END, str(message))
class RedirectGUI(object):
def __init__(self):
# Create window - Ignore this bit.
# ================================
self.root = Tk()
self.btn = Button(self.root, text="Print!", command=self.print_stuff, state=NORMAL)
self.btn.pack()
self.textbox = Text(self.root)
self.textbox.pack()
# Setup redirect
# ==============
self.re = Redir(self.textbox)
sys.stdout = self.re
# Main window display
# ===================
self.root.mainloop()
def print_stuff(self):
subprocess.Popen(["python", "test2.py"], stdout=self.re)
print "Output1"
if __name__ == "__main__":
RedirectGUI()
test2.py:
class Test2(object):
def __init__(self):
print "Output2"
if __name__ == "__main__":
Test2()
答案 0 :(得分:1)
你可以试试这个,看看你是否得到了“Output2”
task = subprocess.Popen(["python", "test2.py"], stdout=subprocess.PIPE)
print task.communicate()
如果您这样做,请将其发送到文本框:)