使用jsoncpp生成一个string类型的json数据
时间: 2024-06-13 13:07:15 浏览: 111
vc6中使用的jsoncpp操作json类型
以下是使用jsoncpp生成一个string类型的json数据的示例代码:
```c++
#include <iostream>
#include <json/json.h>
int main() {
Json::Value root;
root["name"] = "John";
root["age"] = 30;
root["email"] = "john@example.com";
Json::StreamWriterBuilder builder;
std::string json_string = Json::writeString(builder, root);
std::cout << json_string << std::endl;
return 0;
}
```
运行结果为:
```
{"name":"John","age":30,"email":"john@example.com"}
```
阅读全文