我正在尝试从我的 python 脚本中读取用 c++ 编写的可执行文件 (A) 的输出。我在 Linux 中工作。到目前为止我知道的唯一方法是通过子流程库
首先我试过
p = Popen(['executable', '-arg_flag1', arg1 ...], stdout=PIPE, stdin=PIPE, stderr=STDOUT)
print "reach here"
stdout_output = p.communicate()[0]
print stdout_output
sys.stdin.read(1)
结果挂断了我的可执行文件(cpu 使用率为 99%)和我的脚本 :S:S:S 此外到达这里打印。
之后我尝试了:
f = open ("out.txt", 'r+')
command = 'executable -arg_flag1 arg1 ... '
subprocess.call(command, shell=True, stdout=f)
f.seek(0)
content = f.read()
这可行,但我得到一个输出,其中内容末尾的一些字符重复,或者产生的值比预期的多:S
无论如何,有人可以告诉我一个更合适的方法吗?
提前致谢