2017-07-09 17:51:38 +08:00
|
|
|
#include <iostream>
|
2018-08-17 03:53:47 +08:00
|
|
|
#include <iomanip>
|
2018-02-02 05:20:26 +08:00
|
|
|
#include <nlohmann/json.hpp>
|
2015-06-22 04:42:32 +08:00
|
|
|
|
2016-01-31 03:23:14 +08:00
|
|
|
using json = nlohmann::json;
|
2015-06-22 04:42:32 +08:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create JSON values
|
|
|
|
json j_object = {{"one", 1}, {"two", 2}};
|
|
|
|
json j_array = {1, 2, 4, 8, 16};
|
|
|
|
|
|
|
|
// serialize without indentation
|
|
|
|
std::cout << j_object << "\n\n";
|
|
|
|
std::cout << j_array << "\n\n";
|
|
|
|
|
|
|
|
// serialize with indentation
|
|
|
|
std::cout << std::setw(4) << j_object << "\n\n";
|
|
|
|
std::cout << std::setw(2) << j_array << "\n\n";
|
2017-05-08 01:27:40 +08:00
|
|
|
std::cout << std::setw(1) << std::setfill('\t') << j_object << "\n\n";
|
2015-06-22 04:42:32 +08:00
|
|
|
}
|