#include <stdio.h>
#include <curl/curl.h>
#include <json/json.h>
#include <iostream>
#include <string>
#include <fstream>
#pragma warning(disable:4996)
//适当地使用size_t还会使你的代码变得如同自带文档。
//它代表字节大小或数组索引。
size_t receive_data(void* buffer, size_t size, size_t nmemb, FILE* file) {
size_t r_size = fwrite(buffer, size, nmemb, file);
//该函数以二进制形式对文件进行操作,不局限于文本文件。
//将buffer所指向的数组中的数据写入到file输出流中。
//size是被写入的每个元素的大小,以字节为单位,nmemb是元素的个数。
//每个元素的大小是size字节。
//返回值是实际写入的数据项个数。
//该函数仅仅只是把数据写到了用户空间缓存区,并未同步到文件。
return r_size;
}
int main(void)
{
CURL* curl;
CURLcode res;
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init(); /* get a curl handle */
if (curl) {
//char path[] = "savefile.txt";
//FILE* file = fopen(path, "w+");
w+ 打开可读写文件,若文件存在则文件长度清为零,即该文件内容会消失。若文件不存在则建立该文件。
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, "在这里,输入需要请求的网址即可。。");
struct curl_slist* headers = NULL; /* init to NULL is important */
headers = curl_slist_append(headers, "Content-Type:application/json");
//这句话是设置格式。这里面有很多种格式。要确认发送的格式满足服务器的接口要求。
/* pass our list of custom made headers */
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
const std::string jsonstring1 = "这里面是一个json字符串。满足要求的一个字符串。";
const char* data = jsonstring1.c_str();
//curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, -1);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(data));
//curl_easy_setopt(curl, CURLOPT_POSTFIELDS, jsonstring1);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
/* Perform the request, res will get the return code */
//curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, receive_data);
//curl_easy_setopt(curl, CURLOPT_WRITEDATA, file);
res = curl_easy_perform(curl);
/* Check for errors */
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
//fclose(file);
curl_slist_free_all(headers); /* free the header list */
/* always cleanup */
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
将返回的json字符串存入文件
最新推荐文章于 2023-06-16 18:35:35 发布