7

C++popen()在执行一个进程后返回一个包含输出的文件描述符。我需要一个 char* 而不是 FILE*,即。一个字符串作为我的输出。我该怎么办?请帮我。

4

3 回答 3

6

我想我会按照这个一般顺序做一些事情:

char big_buffer[BIG_SIZE];
char small_buffer[LINE_SIZE];
unsigned used = 0;

big_buffer[0] = '\0'; // initialize the big buffer to an empty string

// read a line data from the child program
while (fgets(small_buffer, LINE_SIZE, your_pipe)) {
    // check that it'll fit:
    size_t len = strlen(small_buffer);
    if (used + len >= BIG_SIZE)
        break;

    // and add it to the big buffer if it fits
    strcat(big_buffer, small_buffer);
    used += strlen(small_buffer);
}

如果您想要更详细,您可以动态分配空间,并尝试根据需要增加它以保持您获得的输出量。这将是一条更好的路线,除非您至少知道孩子可能会产生多少产出。

编辑:鉴于您使用的是 C++,动态大小的结果实际上非常简单:

char line[line_size];
std::string result;

while (fgets(line, line_size, your_pipe))
     result += line;
于 2012-05-19T18:57:32.510 回答
2

使用通常的例程将 的输出读FILE*入字符串。stdio

于 2012-05-19T18:49:14.973 回答
1

https://stackoverflow.com/a/10702464/981959

您可以在两行中执行此操作(三行包括 typedef 以提高可读性):

#include <pstream.h>
#include <string>
#include <iterator>

int main()
{
  redi::ipstream proc("./some_command");
  typedef std::istreambuf_iterator<char> iter;
  std::string output(iter(proc.rdbuf()), iter());
}

这会处理所有内存分配并在您完成后再次关闭流。

于 2012-06-10T10:48:46.153 回答