popen不会捕获命令的所有输出

时间:2015-12-16 07:22:28

标签: c linux qt popen

#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QProcess>
#include <QFile>
#include <QDebug>
#include <stdio.h>

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);

    FILE* file1 = popen ("make", "r");

    char buff[5122];

    while(fgets(buff, sizeof(buff), file1)!=NULL)
    {
        qDebug() << "from here: " << buff;
    }


    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral ("qrc:/main.qml")));
    return app.exec();
}

使用make命令输出为:

QML debugging is enabled. Only use this in a safe environment.
from here: make: Nothing to be done for first'.`

使用ping命令输出为:

QML debugging is enabled. Only use this in a safe environment.
Usage: ping [-aAbBdDfhLnOqrRUvV] [-c count] [-i interval] [-I interface]
            [-m mark] [-M pmtudisc_option] [-l preload] [-p pattern] [-Q tos]
            [-s packetsize] [-S sndbuf] [-t ttl] [-T timestamp_option]
            [-w deadline] [-W timeout] [hop1 ...] destination

如您所见,使用make命令,输出被qDebug捕获并显示。 但是,ping 并非如此。

无论是错误还是其他什么,我希望每个输出都能通过我的程序通过qDebug进行捕获和显示。

我现在应该做什么?

1 个答案:

答案 0 :(得分:5)

在您的代码中:

FILE* file1 = popen ("make", "r");

您可以在计算机上使用任何 shell 命令。例如,您可以将标准错误重定向到与标准输出相同的目标,并通过管道捕获两者

FILE* file1 = popen ("make 2>&1", "r");

进一步阅读:

虽然技术上可以打开多个管道到子进程,但它比popen的单行调用要复杂得多: