我有一个可执行文件,如果我使用标志运行它,它会启动一个始终生成消息的工具。当我尝试使用子进程运行它时,我得到了 cmd 的输出,这很好。问题是我想接收这些消息并对它们做一些事情,但由于某种原因,unbuffring 方法不起作用,我没有收到任何消息。
以下是我尝试过的代码:
p = subprocess.Popen(
["my_tool.exe","runMode","y","port","1234"],stdout=subprocess.PIPE,stderr=subprocess.STDOUT, bufsize=1)
要生成输出,请尝试以下操作:
for line in p.stdout:
print("CUR", line)
和:
while p.poll() is None:
line = p.stdout.read(2)
print("Print:" + line)
和:
for line in iter(p.stdout.readline, b''):
print(line)
p.stdout.close()
知道为什么 stdout 行上的代码总是阻塞吗?
更新:
例如,如果我有以下无限程序:
inf.py
import time
i = 0
while True:
time.sleep(0.5)
print(i)
i += 1
以及运行它的以下代码:
p = subprocess.Popen(r"C:\Python35\python.exe inf.py",
stdout=subprocess.PIPE, bufsize=1, universal_newlines=True)
并生成我使用上述方法之一的输出,如果我使用 CTRL+C 停止它,它总是卡在这一行:
File "C:\Python35\lib\encodings\cp1252.py", line 22, in decode
def decode(self, input, final=False):