3

我正在使用子进程在 Python 脚本中调用外部程序。外部程序产生大量输出。我需要捕获这个程序的输出。当前的代码是这样的:

process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
while process.poll() != None:
    line = process.stdout.readline()
    print line

我收到此代码的错误是

该进程试图写入一个不存在的管道。

如果我使用以下代码:

process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
o, e = process.communicate()
print o 

那么程序的输出不会被捕获。

我应该如何更改我的代码,以便在第三方程序运行时捕获它的输出?

4

1 回答 1

3

波本是矫枉过正。

尝试:

output = subprocess.check_output('gams "indus89.gms"\r\n', shell=True)

希望这将在您的环境中工作。

于 2012-05-22T21:58:55.353 回答