IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> 利用libcurl库实现post数据上传 -> 正文阅读

[开发测试]利用libcurl库实现post数据上传

具体用例可以从postman进行复制,比较方便,后台接口api写好以后,在postman运行,然后点击右侧编辑按钮,下拉框选择C-libcurl,下面会自动显示出示例代码:
在这里插入图片描述


struct fileInfo  
{  
	fileInfo()
	{
	}

	fileInfo::fileInfo(const fileInfo& other)
	{
		strFilePath = other.strFilePath;
		strFileDir = other.strFileDir;
	}

	fileInfo& operator = (fileInfo& thInfo)
	{
		strFilePath = thInfo.strFilePath;
		strFileDir = thInfo.strFileDir;

		return* this;
	}

	~fileInfo()
	{

	}

	wstring strFilePath;
	wstring strFileDir;
};  


bool CurlPostFile(LPCTSTR sUrl, LPCTSTR sToken,LPCTSTR sProjectId,bool bZip,std::vector<fileInfo> vecFileInfo,int& nStatus)
{
	CURL *curl;
	CURLcode res;
	curl = curl_easy_init();
	if(curl == nullptr)
	{
		return false;
	}

	curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
	curl_easy_setopt(curl, CURLOPT_URL, sUrl);
	curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
	curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "http");

	struct curl_slist *headers = NULL;
	headers = curl_slist_append(headers, sToken);
	curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
	curl_mime *mime;
	curl_mimepart *part;
	mime = curl_mime_init(curl);

	for (auto iterFile = vecFileInfo.begin(); iterFile != vecFileInfo.end(); ++iterFile)
	{
		wstring wsAbsFileName = iterFile->strFilePath;
		part = curl_mime_addpart(mime);
		curl_mime_name(part, "files");
		string sFilePath = UnicodeToUtf8(wsAbsFileName);
		curl_mime_filedata(part, sFilePath.c_str());
	}

	string sFilePaths;
	for (int i = 0; i < vecFileInfo.size(); ++i)
	{
		wstring wsDir = vecFileInfo[i].strFileDir;
		string sDir = UnicodeToASNI(wsDir.c_str());
		sDir = "\"" + sDir + "\"";

		if (i != vecFileInfo.size() - 1)
		{
			sFilePaths = sFilePaths + sDir + ",";
		}
		else
		{
			sFilePaths = sFilePaths + sDir;
		}
	}

	sFilePaths = "[" + sFilePaths + "]";
	ReplaceString(sFilePaths, "\\", "/");
	wstring wsFilePaths = ANSIToUnicode(sFilePaths);
	string sUTF8Paths = UnicodeToUtf8(wsFilePaths);

	std::wstring wsFilesDir;
	part = curl_mime_addpart(mime);
	curl_mime_name(part, "filePaths");
	curl_mime_data(part, sUTF8Paths.c_str(), CURL_ZERO_TERMINATED);

	part = curl_mime_addpart(mime);
	curl_mime_name(part, "projectId");
	curl_mime_data(part, sProjectId, CURL_ZERO_TERMINATED);

	part = curl_mime_addpart(mime);
	curl_mime_name(part, "needUnZip");
	if (bZip)
	{
		curl_mime_data(part, "true", CURL_ZERO_TERMINATED);
	}
	else
	{
		curl_mime_data(part, "false", CURL_ZERO_TERMINATED);
	}

	curl_easy_setopt(curl, CURLOPT_MIMEPOST, mime);
	res = curl_easy_perform(curl);
	curl_mime_free(mime);

	curl_easy_cleanup(curl);

	nStatus = (int)res;

	if (res != CURLE_OK)
	{
		return false;
	}

	return true;
}

post数据格式:json,示例如下:

CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
  curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
  curl_easy_setopt(curl, CURLOPT_URL, "http://localhost:8082/Reg/Ad");
  curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
  struct curl_slist *headers = NULL;
  headers = curl_slist_append(headers, "Content-Type: application/json");
  curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  const char *data = "{\r\n    \"prCe\":\"ro\",\r\n    \"parentId\":0,\r\n    \"depot\":\"ecp\",\r\n    \"reon\":\r\n    {\r\n        \"name\":\"ds\",\r\n        \"height\":\"2\",\r\n        \"dir\":\"0\",\r\n        \"points\":[5,10,0,11,11,0,6,12,0,10,8,0]\r\n    }\r\n}";
  curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
  res = curl_easy_perform(curl);
}
curl_easy_cleanup(curl);
  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2022-02-24 15:36:05  更:2022-02-24 15:36:32 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 2:44:16-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码