在不使用C++中的外部库或模块的情况下读写JSON文件,可以使用C++标准库中的iostream和fstream来实现。
读取JSON文件的步骤如下:
示例代码如下:
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.json");
std::string line;
if (file.is_open()) {
while (std::getline(file, line)) {
std::cout << line << std::endl;
}
file.close();
} else {
std::cout << "Unable to open file." << std::endl;
}
return 0;
}
写入JSON文件的步骤如下:
示例代码如下:
#include <iostream>
#include <fstream>
int main() {
std::ofstream file("example.json");
if (file.is_open()) {
file << "{ \"name\": \"John\", \"age\": 30, \"city\": \"New York\" }";
file.close();
} else {
std::cout << "Unable to open file." << std::endl;
}
return 0;
}
需要注意的是,这种方法只适用于简单的JSON文件读写,对于复杂的JSON文件操作,推荐使用专门的JSON库或模块,如RapidJSON、nlohmann/json等。这些库提供了更丰富的功能和更高效的性能。
领取专属 10元无门槛券
手把手带您无忧上云