如何捕获子进程的标准输出?
我正在尝试用 Python 编写一个程序,并且被告知要运行一个 .exe 文件。 当这个 .exe 文件运行时,它会输出大量数据,我需要将某一行打印到屏幕上。 我很确定我需要使用 subprocess.popen 或类似的东西,但我是 subprocess 的新手,没有任何线索。 有人有一个简单的方法可以让我完成这件事吗?
I'm trying to write a program in Python and I'm told to run an .exe file. When this .exe file is run it spits out a lot of data and I need a certain line printed out to the screen. I'm pretty sure I need to use subprocess.popen
or something similar but I'm new to subprocess and have no clue. Anyone have an easy way for me to get this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有兴趣在进程完成执行后打印输出,@Paolo 的解决方案是完美的。 如果您想在进程运行时轮询输出,则必须这样做:
@Paolo's solution is perfect if you are interested in printing output after the process has finished executing. In case you want to poll output while the process is running you have to do it this way:
像这样的东西:
Something like this: