我是学习C语言的初学者:-)
我已经在 stackoverflow 中搜索了如何解决这个问题,但我无法理解。 :-(
在发布这个帖子之前,我总是将 stdout 重定向到一个文件,然后使用 fread
将其读取为一个字符串
system ("print.exe > tempfile.tmp");
FILE *fp = fopen ( tempfile.tmp , "rb" );
char Str[Buf_Size];
fread (Str,sizeof(char),Buf_Size,fp);
如果这样做,会在文件 I/O 中浪费大量时间。
如何在不重定向到临时文件的情况下将标准输出重定向到 C 语言中的字符串?
这可能吗?谢谢。
环境:Windows 和 GCC
标准输出可以通过 popen 重定向常规:
#include <stdio.h>
...
FILE *fp;
int status;
char path[PATH_MAX];
fp = popen("ls *", "r");
if (fp == NULL)
/* Handle error */;
while (fgets(path, PATH_MAX, fp) != NULL)
printf("%s", path);
status = pclose(fp);
if (status == -1) {
/* Error reported by pclose() */
...
} else {
/* Use macros described under wait() to inspect `status' in order
to determine success/failure of command executed by popen() */
...
}
我是一名优秀的程序员,十分优秀!