如何巧妙地“投射” QProgressBar 的 qint64 到 int

发布于 2024-10-16 12:58:14 字数 751 浏览 2 评论 0原文

我正在使用 QFtp(是的..我知道)并且一切正常。

使用他们自己的示例中的代码作为指导。

http://doc.qt.io/archives/qt -4.7/network-qftp-ftpwindow-cpp.html

我遇到的唯一问题是发送(或接收)大文件(假设为 3 GB)时进度条出现故障。

这是由于从 qint64 到 int in 的强制转换:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
    qint64 totalBytes) 
{
    progressDialog->setMaximum(totalBytes);
    progressDialog->setValue(readBytes);
}

我想知道在谷歌搜索大约一个小时后处理这个问题的最好方法是什么,并决定通过确保不超出范围来保持它的“安全” 。

while (totalBytes > 4294967295UL)
{ 
   totalBytes = totalBytes/4294967295UL;
   readBytes = readBytes/4294967295UL;
}

但这“感觉”不对。 。

I'm playing around with QFtp (yes .. I know) and all works well.

Using code from their own example(s) as a guideline.

http://doc.qt.io/archives/qt-4.7/network-qftp-ftpwindow-cpp.html

The only problem I'm having is when sending (or receiving) big files (let's say 3 GB) the progress bar glitches out.

This is due to the cast from qint64 to int in:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
    qint64 totalBytes) 
{
    progressDialog->setMaximum(totalBytes);
    progressDialog->setValue(readBytes);
}

I'm wondering what would be the nicest way to handle this after googling for about an hour and settling on keeping it 'safe' by making sure I don't go out of range.

while (totalBytes > 4294967295UL)
{ 
   totalBytes = totalBytes/4294967295UL;
   readBytes = readBytes/4294967295UL;
}

But that doesn't "feel" right . .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云巢 2024-10-23 12:58:14

您可以使进度条以百分比形式显示进度:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
    qint64 totalBytes) 
{
    progressDialog->setMaximum(100);
    progressDialog->setValue((qint)((readBytes * 100) / totalBytes));
}

You can make the progress bar present the progress as a percentage:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
    qint64 totalBytes) 
{
    progressDialog->setMaximum(100);
    progressDialog->setValue((qint)((readBytes * 100) / totalBytes));
}
匿名的好友 2024-10-23 12:58:14

将进度条设置为 0-100 范围,并显示读取的字节百分比,而不是尝试设置绝对值。

Set your progress bar to a range of 0-100, and display the percentage of bytes read instead of trying to set the absolute value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文