C 의 popen 함수 와 Python 의 popen 방법

2254 단어 pythonC
mingw 에서 popen 의 성명 은 다음 과 같 습 니 다 (stdio. h).
_CRTIMP __cdecl __MINGW_NOTHROW  FILE *  popen (const char *, const char *);
_CRTIMP __cdecl __MINGW_NOTHROW  int     pclose (FILE *);

호출 예
#include 
#include 

char buf[10240] = {0};

int  main(void)
{
    FILE *fp = NULL;

    fp = popen("CJSON.exe","r");  //r for read, read from CJSON.stdout->fp
                                    //w for write,write cmd from fp to CJSON.stdin
    if(!fp)
    {
        perror("popen");
        exit(EXIT_FAILURE);
    }
    fread(buf, 10240, 1, fp);
    printf("%s
"
,buf); pclose(fp); }

Python 에서 Popen 방법 은 상기 기능 을 완성 하 는 것 이 더욱 편리 하고 간결 하 다.
import subprocess
p = subprocess.Popen(['JSON.exe'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
try:
    output,err=p.communicate()
except TimeoutExpired:
    p.kill()
    outs, errs = p.communicate()


print(output.decode('utf-8'))

좋은 웹페이지 즐겨찾기