【发布时间】:2015-12-12 21:32:10
【问题描述】:
我正在尝试使用wget 打印下载网站的过程输出
在小部件 (textEdit) 中,但它什么也不打印,但是在终端中它可以工作。
示例
命令:
wget --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla http://site/path`
输出:
Resolving ******... 54.239.26.173
Connecting to *****|54.239.26.173|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘/index.html’
...
我的代码:
void downloadWebsite::on_pushButton_clicked()
{
input = ui->lineEdit->text();
if(input.isEmpty())
QMessageBox::information(this,"Error","Not an url / webpage !");
else{
QProcess *getDownload = new QProcess(this);
getDownload->setProcessChannelMode(QProcess::MergedChannels); //it prints everything , even errors
QString command = "wget --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla " + input;
getDownload->start("sh",QStringList() << "-c" <<"cd ;"+command);
QByteArray outputLog = getDownload->readAllStandardOutput();
getDownload->waitForFinished();
getDownload->close();
QString outputToString(outputLog);
ui->textEdit->setText(outputToString);
}
}
我做错了什么?
谢谢。
【问题讨论】: