how to get Transfer rate when downloading file
Solved
General and Desktop
-
Hi
I want to get transfer rate when downloading a file
in use QNetworkAccessManager , QNetworkReply -
Use a QTimer to count the interval between two
QNetworkReply::readyRead()
signals then takeQNetworkReply::bytesAvailable()
divide by 8 times (1 byte=8bits) the timer value (in seconds) and then adjust for the magnitude ( divide by 1024 for kb, by 1048576 for Mbps or 1073741824 for Gbps)
1/4