You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
658 B
24 lines
658 B
#include <iostream>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create JSON value with invalid UTF-8 byte sequence
|
|
json j_invalid = "ä\xA9ü";
|
|
try
|
|
{
|
|
std::cout << j_invalid.dump() << std::endl;
|
|
}
|
|
catch (const json::type_error& e)
|
|
{
|
|
std::cout << e.what() << std::endl;
|
|
}
|
|
|
|
std::cout << "string with replaced invalid characters: "
|
|
<< j_invalid.dump(-1, ' ', false, json::error_handler_t::replace)
|
|
<< "\nstring with ignored invalid characters: "
|
|
<< j_invalid.dump(-1, ' ', false, json::error_handler_t::ignore)
|
|
<< '\n';
|
|
}
|
|
|