21人参与 • 2026-09-13 • Javascript
c++ nlohmann/json 库是一个非常易用,高性能的 json 库。
include(fetchcontent)
fetchcontent_declare(json
url https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz)
fetchcontent_makeavailable(json)
target_link_libraries(json_demo private nlohmann_json::nlohmann_json)
包含头文件以及声明命名空间别名:
#include <nlohmann/json.hpp> using json = nlohmann::json;
// method 1
std::ifstream f("example.json");
json data = json::parse(f);
// method 2
std::ifstream i("file.json");
json j;
i >> j;
// using (raw) string literals and json::parse
json ex1 = json::parse(r"(
{
"pi": 3.141,
"happy": true
}
)");
// using user-defined (raw) string literals
using namespace nlohmann::literals;
json ex2 = r"(
{
"pi": 3.141,
"happy": true
}
)"_json;
// using initializer lists
json ex3 = {
{"happy", true},
{"pi", 3.141},
};
// special iterator member functions for objects
for (json::iterator it = o.begin(); it != o.end(); ++it) {
std::cout << it.key() << " : " << it.value() << "\n";
}
// the same code as range for
for (auto& el : o.items()) {
std::cout << el.key() << " : " << el.value() << "\n";
}
// even easier with structured bindings (c++17)
for (auto& [key, value] : o.items()) {
std::cout << key << " : " << value << "\n";
}
if (j.contains("key")) {
}
if (j.find("foo") != o.end()) {
}
auto value = j["key"];
auto value = j.at("key");
std::string value = j["key"].template get<std::string>();
// c++17
using namespace std::literals;
// 如果key不存在,则返回默认值0
int v_integer = j.value("integer"sv, 0);
// delete an entry
o.erase("foo");
注意:数组可能无法删除单个元素
std::ofstream o("pretty.json");
o << std::setw(4) << j << std::endl;
// 按照四个空格缩进打印json std::cout << j.dump(4) << std::endl;
以上就是在使用 json 库时的常用场景。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持代码网。
您想发表意见!!点此发布评论
版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。
发表评论