如何实现暂停&暂停恢复文件下载功能?
我想实现暂停&恢复为服务器和服务器下载文件的功能客户。我的问题是:
我需要在服务器站点实现什么协议(它将是.NET)? 是否有任何示例、教程、库有助于在客户端站点实现此功能(将使用 C++)?
谢谢, 尤维
I would like to implement pause & resume functionality for downloading a file both for Server & Client. My Questions are:
What Protocol do I need to implement at server site (It will be .NET) ?
Is there any example, tutorial, library anything that can be helpful to implement this functionality at the client site (It will be in C++) ?
Thanks,
Yuvi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 Qt C++ 创建了一个简单的下载管理器,这里是 代码。想法是在客户端设置“范围”http 标头。
在服务器端,您需要在“range”标头中指定的特定位置查找文件。
I created a simple download manager using Qt C++, here is code. Idea is to set "range" http header at client side.
In server side, you need to seek file at particular position as specified in "range" header.