加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
http.cc 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
jin 提交于 2024-07-15 16:06 . add demos
#include <iostream>
#include <map>
#include <sstream>
#include <string>
std::string get_boundary(const std::string& content_type_header) {
std::map<std::string, std::string> params;
std::istringstream iss(content_type_header);
std::string key;
std::getline(iss, key, ';'); // 提取"Content-Type"
std::string line;
while (std::getline(iss, line, ';')) {
std::istringstream param_iss(line);
std::string param_key;
if (std::getline(param_iss, param_key, '=')) {
std::string param_value;
if (std::getline(param_iss, param_value, '"')) {
params[param_key] = param_value;
}
}
}
auto it = params.find("boundary");
if (it != params.end()) {
return "--" + it->second;
}
return "";
}
int main() {
std::string content_type = "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW";
std::string boundary = get_boundary(content_type);
std::cout << "Boundary: " << boundary << std::endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化