from_bson.cpp 610 B

123456789101112131415161718192021
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <nlohmann/json.hpp>
  4. using json = nlohmann::json;
  5. int main()
  6. {
  7. // create byte vector
  8. std::vector<uint8_t> v = {0x1b, 0x00, 0x00, 0x00, 0x08, 0x63, 0x6f, 0x6d,
  9. 0x70, 0x61, 0x63, 0x74, 0x00, 0x01, 0x10, 0x73,
  10. 0x63, 0x68, 0x65, 0x6d, 0x61, 0x00, 0x00, 0x00,
  11. 0x00, 0x00, 0x00
  12. };
  13. // deserialize it with BSON
  14. json j = json::from_bson(v);
  15. // print the deserialized JSON value
  16. std::cout << std::setw(2) << j << std::endl;
  17. }