解决QNetworkReplyImplPrivate::error: Internal problem, this method must only be called once.错误

在使用Qt的QNetworkReply进行HTTP文件下载时,当m_reply处于错误状态,直接调用abort()或close()会导致内部错误。正确的做法是检查是否正在运行,然后使用deleteLater()并置空指针。

在QNetworkReply *m_reply使用http下载文件时,如果此时的m_reply已经处于错误状态,则不要调用 m_reply->abort();
或者 m_reply->close();

  QNetworkAccessManager *manager = new QNetworkAccessManager(this);
  manager->get(QNetworkRequest(QUrl("http://qt-project.org")));
  m_reply = m_networkManager.get(QNetworkRequest(requestedUrl));
connect(m_reply, SIGNAL(error(QNetworkReply::NetworkError)), 
		this, SLOT(httpError(QNetworkReply::NetworkError)));

可以获得几乎所有Qt自定义的http错误(也可以自己增加新的错误码)
这样做也没用:

 if (m_reply->isRunning())
{
	m_reply->abort();  //也不要m_reply->close(); 
}

http处于错误时,m_reply->isRunning()还返回true,Qt文档写得不太清楚。此时再调用m_reply->abort(); 或者m_reply->close();
都会报错:

QNetworkReplyImplPrivate::error: Internal problem, this method must only be called once.

此时应该

m_reply->deleteLater();
m_reply = nullptr;
QGeoTileProviderOsm: Tileserver disabled at QUrl("http://maps-redirect.qt.io/osm/5.8/satellite") QGeoTileFetcherOsm: all providers resolved QNetworkReplyImplPrivate::error: Internal problem, this method must only be called once. QGeoTileRequestManager: Failed to fetch tile (6462,3363,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3228,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6465,3363,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3235,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3229,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (1615,840,11) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3229,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (1616,841,11) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3234,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6463,3361,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6464,3360,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (1616,840,11) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3234,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6462,3362,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3230,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6464,3361,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (1615,841,11) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3234,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3234,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3233,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3229,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6463,3362,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3231,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3235,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3228,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6465,3360,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6462,3360,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3235,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3228,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3232,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3230,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3234,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6464,3362,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3229,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6463,3363,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6465,3361,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6462,3361,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3235,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3235,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3228,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3228,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3234,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6464,3363,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (1616,839,11) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3229,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6463,3360,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3229,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3233,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (1615,839,11) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3231,1683,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3235,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (6465,3362,13) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3228,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3232,1678,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3232,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3231,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3230,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3231,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3233,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3232,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3233,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3231,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3233,1682,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3230,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3232,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3231,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3230,1681,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3233,1679,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3230,1680,12) 5 times, giving up. Last error message was: '??????' QGeoTileRequestManager: Failed to fetch tile (3232,1681,12) 5 times, giving up. Last error message was: '??????'
最新发布
09-23
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值