我以为我将使用以下代码从 QProcess 获取输出:
// Start the process
process.start(tr("php-cgi www/test.php"),QIODevice::ReadWrite);
// Wait for it to start
if(!process.waitForStarted())
return 0;
// Continue reading the data until EOF reached
QByteArray data;
while(process.waitForReadyRead())
data.append(process.readAll());
// Output the data
qDebug(data.data());
qDebug("Done!");
我期望看到程序的输出打印到调试控制台,但我看到的只是:
完毕!
我知道:
- 程序启动正常,因为打印了最后的消息。
- 该程序确实打印输出,因为在终端中运行完全相同的命令会产生预期的一长串文本。
我在这里做错了什么?