基于 downloadmanager 示例,Qt 下载超过 15 个文件不起作用
我有一个简单的 Qt 应用程序,它在此工作线程中打开一个工作线程 我正在下载文件,图像文件总是超过20个(也可以是50个)。
对于下载管理器,我采用了 Main Qt 示例目录中的 DownloadManager 项目
并使用它,我只是用 URL 填充 QStringList 并将其发送到 DownloadManager 对象实例。
但下载并没有像我预期的那样工作,它没有下载所有文件,并且总是在 15-20 个文件后停止,知道为什么吗?
I have simple Qt application that opens one worker thread in this worker thread
im downloading files, image files always more then 20 ( it can be 50 also ).
For the download manager I took the DownloadManager project that is in the Main Qt Example dir
and used that, I just filled the QStringList with URL's and sent it to the DownloadManager object instance.
But the download doesn't work as I expected, its not downloading all the files and always stops after 15-20 files any idea why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能限制了并发线程的数量。
You're probably limiting on the number of simultaneous threads.