Qt Progressbar百分比问题

时间:2016-11-12 17:32:58

标签: qt windows-applications qprogressbar

我想在下载文件时显示进度条百分比。下载文件时,我得到64%,而不是100%。如何解决这个问题?提前致谢。enter image description here

echo

1 个答案:

答案 0 :(得分:0)

您的progressPercentage计算错误。在100%时,你做了80 * 80/100 = 64。

将其更改为

int progressPercentage = (totalMBReceived * 100) / totalSize;