问题
QUrl downloadUrl = QUrl::fromEncoded(downloadUrlStr.toAscii());
qDebug() << downloadUrl.toString();
QNetworkRequest req(downloadUrl);
req.setAttribute(QNetworkRequest::User, id);
QNetworkReply *finalReply = nam->get(req);
connect(finalReply, SIGNAL(finished()),
this, SLOT(dataFetchFinished()));
I have the above code in my Qt 4.8.4 application, but in the dataFetchFinished() slot I keep detecting the error: Protocol "" is unknown
The debug output is: "http://192.168.1.1/servlet/com.roving.report.view.excel.ExcelReportServlet?file=661&columns=0&srcType=defineBean&width=0&height=0&reportParamsId=100583&cachedId=662&t_i_m_e=1376086878417&pageStyle=0"
Any help is much appreciated!
来源:https://stackoverflow.com/questions/18156713/keep-getting-protocol-is-unknown-error-in-qt