将map转换为json字符串
时间: 2024-06-08 17:08:25 浏览: 147
Map转成json
4星 · 用户满意度95%
您可以使用JSON库将map转换为JSON字符串。以下是一个示例代码:
```c++
#include <iostream>
#include <map>
#include <string>
#include <nlohmann/json.hpp> // JSON库
using json = nlohmann::json;
int main() {
std::map<std::string, int> my_map = {{"foo", 1}, {"bar", 2}, {"baz", 3}};
// 将map转换为JSON对象
json j;
for (const auto& [key, value] : my_map) {
j[key] = value;
}
// 将JSON对象转换为字符串
std::string json_string = j.dump();
std::cout << json_string << std::endl;
return 0;
}
```
该代码使用了第三方的JSON库nlohmann/json,您需要先安装该库。在Linux系统中,您可以使用以下命令安装:
```
sudo apt-get install nlohmann-json3-dev
```
在Windows系统中,您可以从官网https://github.com/nlohmann/json下载源码并编译。
阅读全文