我使用的是 python 版本 2.7.9,当我尝试从 Popen 进程读取一行时,它会卡住,直到进程结束。如何在 stdin 结束之前读取它?
如果输入是“8200”(正确的密码),则会打印输出。 但是如果将密码从“8200”更改为没有输出,为什么?
子流程源代码:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char password[10];
int num;
do
{
printf("Enter the password:");
scanf("%s", &password);
num = atoi(password);
if (num == 8200)
printf("Yes!\n");
else
printf("Nope!\n");
} while (num != 8200);
return 0;
}
Python 来源:
from subprocess import Popen, PIPE
proc = Popen("Project2", shell=True, stdin=PIPE,stdout=PIPE,stderr=PIPE)
#stdout_data = proc.communicate(input='8200\r\n')[0]
proc.stdin.write('123\r\n')
print proc.stdout.readline()
如果将 printf 更改为
printf("Enter the password:\n");
并添加冲洗
fflush (stdout);
缓冲区被刷新。刷新意味着即使缓冲区尚未满,数据也会被写入。我们需要添加一个 强制换行,因为 python 会缓冲所有输入,直到读取 在
proc.stdout.readline();
在Python中我们添加了一条readline。然后它看起来像这样:
proc = Popen("Project2", shell=True, stdin=PIPE,stdout=PIPE,stderr=PIPE)
proc.stdout.readline()
proc.stdin.write('123\r\n')
print proc.stdout.readline()
这就是正在发生的事情: