Libcurl 将数据写入数组

发布于 2024-11-26 02:24:47 字数 1404 浏览 2 评论 0原文

这个我还真的搜过我已经看到了如何使用 libcurl 下载数据并将数据写入文件的示例,但我不知道如何将它们写入数组,

这是我到目前为止的代码:

static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream)
{

int written = fwrite(ptr, size, nmemb, (FILE *)stream);
return written;
}

int main(void)
{
CURL *curl_handle;
FILE *bodyfile;
static const char *headerfilename = "head.out";
FILE *headerfile;
static const char *bodyfilename = "body.out";

curl_global_init(CURL_GLOBAL_ALL);

/* init the curl session */
curl_handle = curl_easy_init();

/* set URL to get */
curl_easy_setopt(curl_handle, CURLOPT_URL,"http://example.com/");
/* no progress meter please */
curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1L);

/* send all data to this function  */
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, write_data);

/* open the files */
headerfile = fopen(headerfilename,"w");
if (headerfile == NULL) {
    curl_easy_cleanup(curl_handle);
    return -1;
}
bodyfile = fopen(bodyfilename,"w");
if (bodyfile == NULL) {
    curl_easy_cleanup(curl_handle);
    return -1;
}

/* we want the headers to this file handle */
curl_easy_setopt(curl_handle,   CURLOPT_WRITEHEADER, headerfile);

/* we want the body to this file handle */
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, bodyfile);

/* get it! */
curl_easy_perform(curl_handle);

/* close the header file */
fclose(headerfile);
fclose(bodyfile);
return 0;
}

I've really searched this. I've seen examples of how you can download and write data to a file with libcurl but I don't know how to write them to an array

that's the code I have so far:

static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream)
{

int written = fwrite(ptr, size, nmemb, (FILE *)stream);
return written;
}

int main(void)
{
CURL *curl_handle;
FILE *bodyfile;
static const char *headerfilename = "head.out";
FILE *headerfile;
static const char *bodyfilename = "body.out";

curl_global_init(CURL_GLOBAL_ALL);

/* init the curl session */
curl_handle = curl_easy_init();

/* set URL to get */
curl_easy_setopt(curl_handle, CURLOPT_URL,"http://example.com/");
/* no progress meter please */
curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1L);

/* send all data to this function  */
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, write_data);

/* open the files */
headerfile = fopen(headerfilename,"w");
if (headerfile == NULL) {
    curl_easy_cleanup(curl_handle);
    return -1;
}
bodyfile = fopen(bodyfilename,"w");
if (bodyfile == NULL) {
    curl_easy_cleanup(curl_handle);
    return -1;
}

/* we want the headers to this file handle */
curl_easy_setopt(curl_handle,   CURLOPT_WRITEHEADER, headerfile);

/* we want the body to this file handle */
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, bodyfile);

/* get it! */
curl_easy_perform(curl_handle);

/* close the header file */
fclose(headerfile);
fclose(bodyfile);
return 0;
}

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

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

发布评论

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

评论(1

ˇ宁静的妩媚 2024-12-03 02:24:47

看来,您需要的内容在 libcurl 文档中进行了描述:

CURLOPT_WRITEFUNCTION

函数指针应与以下原型匹配:size_t
函数( char *ptr, size_t size, size_t nmemb, void *userdata);这
一旦收到数据,libcurl 就会调用该函数
需要保存。 [...]

那就是你必须实现一个带有签名的函数

size_t my_array_write(char *ptr, size_t size, size_t nmemb, void *userdata);

并将其传递给curl:

curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, my_array_write);

但是,我还没有测试过它(而且我不知道有更简单的方法来实现这一点)。有关详细信息,请参阅 libcurl 文档

It seems, what you need is described in the libcurl documentation:

CURLOPT_WRITEFUNCTION

Function pointer that should match the following prototype: size_t
function( char *ptr, size_t size, size_t nmemb, void *userdata); This
function gets called by libcurl as soon as there is data received that
needs to be saved. [...]

That is you have to implement a function with the signature

size_t my_array_write(char *ptr, size_t size, size_t nmemb, void *userdata);

And pass it to curl:

curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, my_array_write);

However, I haven't tested it (and I am not aware of a simpler way to achieve this). See the libcurl docs for more information.

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