摘自http://blog.csdn.net/zmy12007/article/details/37157297

摘自http://www.linuxidc.com/Linux/2014-10/107509.htm

curl断点续传,下载过程中关闭控制台,然后重新启动,又会接着下载

  1. #include "stdafx.h"
  2. #include <io.h>
  3. #include "curl/curl.h"
  4. #include <string>/*注意包含这个头文件后必须把share.h重命名一下,可能是stl里面也有这个头文件,比如curl_share.h,然后把包含到的地方替换一下*/
  5. #include "curl/easy.h"
  6. using namespace std;
  7. static size_t downLoadPackage(void *ptr, size_t size, size_t nmemb, void *userdata)
  8. {
  9. FILE *fp = (FILE*)userdata;
  10. size_t written = fwrite(ptr, size, nmemb, fp);
  11. return written;
  12. }
  13. int assetsManagerProgressFunc(void *ptr, double totalToDownload, double nowDownloaded, double totalToUpLoad, double nowUpLoaded)
  14. {
  15. static int percent = 0;
  16. int tmp = 0;
  17. long localLen = *(long*)ptr;
  18. if ( totalToDownload > 0 )
  19. {
  20. tmp = (int)((nowDownloaded + (double)localLen) / (totalToDownload + (double)localLen) * 100);
  21. }
  22. printf("下载进度%0d%%\r", tmp);
  23. return 0;
  24. }
  25. long GetLocalFileLenth(const char* fileName)
  26. {
  27. char strTemp[256] = {0};
  28. strcpy_s(strTemp,fileName);
  29. FILE* fp = fopen(strTemp, "rb");
  30. if(fp != NULL)
  31. {
  32. long localLen = _filelength(_fileno(fp));
  33. fclose(fp);
  34. return localLen;
  35. }
  36. return 0;
  37. }
  38. /************************************************************************/
  39. /* 获取要下载的远程文件的大小                                            */
  40. /************************************************************************/
  41. long getDownloadFileLenth(const char *url){
  42. long downloadFileLenth = 0;
  43. CURL *handle = curl_easy_init();
  44. curl_easy_setopt(handle, CURLOPT_URL, url);
  45. curl_easy_setopt(handle, CURLOPT_HEADER, 1);    //只需要header头
  46. curl_easy_setopt(handle, CURLOPT_NOBODY, 1);    //不需要body
  47. if (curl_easy_perform(handle) == CURLE_OK)
  48. {
  49. curl_easy_getinfo(handle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &downloadFileLenth);
  50. }
  51. else
  52. {
  53. downloadFileLenth = -1;
  54. }
  55. return downloadFileLenth;
  56. }
  57. bool downLoad(void *_curl, std::string _packageUrl, std::string _storagePath, std::string fileName )
  58. {
  59. // Create a file to save package.
  60. const string outFileName = _storagePath + fileName;
  61. //================断点续载===================
  62. long localLen = GetLocalFileLenth(outFileName.c_str());
  63. FILE *fp = fopen(outFileName.c_str(), "a+b");
  64. if (! fp)
  65. {
  66. return false;
  67. }
  68. fseek(fp, 0, SEEK_END);
  69. // Download pacakge
  70. CURLcode res;
  71. curl_easy_setopt(_curl, CURLOPT_URL, _packageUrl.c_str());
  72. curl_easy_setopt(_curl, CURLOPT_WRITEFUNCTION, downLoadPackage);
  73. curl_easy_setopt(_curl, CURLOPT_WRITEDATA, fp);
  74. curl_easy_setopt(_curl, CURLOPT_NOPROGRESS, false);
  75. curl_easy_setopt(_curl, CURLOPT_PROGRESSFUNCTION, assetsManagerProgressFunc);
  76. curl_easy_setopt(_curl, CURLOPT_NOSIGNAL, 1L);
  77. curl_easy_setopt(_curl, CURLOPT_LOW_SPEED_LIMIT, 1L);
  78. curl_easy_setopt(_curl, CURLOPT_LOW_SPEED_TIME, 5L);
  79. curl_easy_setopt(_curl, CURLOPT_HEADER, 0L);
  80. curl_easy_setopt(_curl, CURLOPT_NOBODY, 0L);
  81. curl_easy_setopt(_curl, CURLOPT_FOLLOWLOCATION, 1L);
  82. curl_easy_setopt(_curl, CURLOPT_RESUME_FROM, localLen);
  83. curl_easy_setopt(_curl, CURLOPT_PROGRESSDATA, &localLen);
  84. res = curl_easy_perform(_curl);
  85. curl_easy_cleanup(_curl);
  86. if (res != 0)
  87. {
  88. fclose(fp);
  89. return false;
  90. }
  91. fclose(fp);
  92. return true;
  93. }
  94. int _tmain(int argc, _TCHAR* argv[])
  95. {
  96. CURL* _curl = curl_easy_init();
  97. if (! _curl)
  98. {
  99. return 0;
  100. }
  101. downLoad(_curl, "http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.01/en_US/AdbeRdr11001_en_US.exe", "./", "AdbeRdr11001_en_US.exe");
  102. //downLoad(_curl, "http://localhost/MyWebServer.rar", "./", "MyWebServer.rar");
  103. getchar();
  104. return 0;
  105. }

curl断点续载的更多相关文章

  1. scrapy爬虫之断点续爬和多个spider同时爬取

    from scrapy.commands import ScrapyCommand from scrapy.utils.project import get_project_settings #断点续 ...

  2. 关于视频断点续播和H5的本地存储

    前段时间,需要在下实现一个视频的断点续播功能,呃,我不会呀,这就很尴尬了.然后呢,在下就想起了一个叫做localStorage的东西.这是个什么东西呢?在网上查阅了一些资料后,在下发现这是webSto ...

  3. python3.6 单文件爬虫 断点续存 普通版 文件续存方式

    # 导入必备的包 # 本文爬取的是顶点小说中的完美世界为列.文中的aa.text,bb.text为自己创建的text文件 import requests from bs4 import Beautif ...

  4. Electron 的断点续下载

    最近用 Electron 做了个壁纸程序,需要断点续下载,在这里记录一下. HTTP断点下载相关的报文 Accept-Ranges 告诉客户端服务器是否支持断点续传,服务器返回 Content-Ran ...

  5. 解决win7 下 curl无法加载的问题

    最近分别在WIN7和Windows8 上分别安装php 高版本!都遇到了这个问题! 一.win7系统64位, apache2.2, php 5.35 vc6 版本 这个比较容易: 1. phpinfo ...

  6. Keras模型训练的断点续训、早停、效果可视化

    训练:model.fit()函数 fit(x=None, y=None, batch_size=None, epochs=, verbose=, callbacks=None, validation_ ...

  7. HTML 5 断点续上传

    断点上传,java里面比较靠谱一点的,一般都会选用Flex.我承认,Flex只是摸了一下,不精通.HTML 5 有个Blob对象(File对象继承它),这个对象有个方法slice方法,可以对一个文件进 ...

  8. scrapy 断点续爬

    第一步:安装berkeleydb数据库 第二部:pip install bsddb3 第三部:pip install scrapy-deltafetch 第四部: settings.py设置 SPID ...

  9. python下载mp4 同步和异步下载支持断点续下

    Range 用于请求头中,指定第一个字节的位置和最后一个字节的位置,一般格式: Range:(unit=first byte pos)-[last byte pos] Range 头部的格式有以下几种 ...

随机推荐

  1. Php开发官方IDE ZEND

    From http://www.zend.com/en/products/studio 注:唯一的缺点是收费.

  2. 百度地图V1.5 LocalSearch增加浮动窗体的操作内容

     1.初始化LocalSearch控件 LocalSearch = new BMap.LocalSearch(map, { renderOptions : { map : map, panel : & ...

  3. UESTC_我要长高 CDOJ 594

    韩父有N个儿子,分别是韩一,韩二…韩N.由于韩家演技功底深厚,加上他们间的密切配合,演出获得了巨大成功,票房甚至高达2000万.舟子是名很有威望的公知,可是他表面上两袖清风实则内心阴暗,看到韩家红红火 ...

  4. Generate Parentheses 解答

    Question Given n pairs of parentheses, write a function to generate all combinations of well-formed ...

  5. Types of Binary Tree

    Complete Binary Tree According to wiki, A complete binary tree is a binary tree in which every level ...

  6. Linux MySql安装步骤

    本文将以MySQL 5.5.47为例,以CentOS 6.5为平台,讲述MySQL数据库的安装和设置. 源码包方式安装 1.新建MySql用户和用户组 groupadd mysql useradd - ...

  7. IOS 使用dispatch_once 创建单例

    + (instantClass *)sharedClient { static instantClass *_sharedClient = nil; static dispatch_once_t on ...

  8. LeetCode——Reverse Words in a String

    Given an input string, reverse the string word by word. For example, Given s = "the sky is blue ...

  9. C# 多线程的坑 之 代码变序

    英文好的,可跳过,直接打开底部的“参考“链接. 代码变序--reordering of memory operations 大概4年前,阅读了这篇文章后http://www.albahari.com/ ...

  10. Linux下重要日志文件及查看方式

    http://os.51cto.com/art/201108/282184_all.htm   1.Linux下重要日志文件介绍 /var/log/boot.log 该文件记录了系统在引导过程中发生的 ...