标签: qt windows-applications qprogressbar
我想在下载文件时显示进度条百分比。下载文件时,我得到64%,而不是100%。如何解决这个问题?提前致谢。
echo
答案 0 :(得分:0)
您的progressPercentage计算错误。在100%时,你做了80 * 80/100 = 64。
progressPercentage
将其更改为
int progressPercentage = (totalMBReceived * 100) / totalSize;