Hi.
First, thanks developers for JsonCpp!
Second, my problem.
json_writer.cpp
->
case stringValue:
document_ += valueToQuotedString( value.asCString() );
((value).value_).string_
contains string NO escape sequence symbols, for example this line:
Р˜РЅС„РѕСЂРјР°С†РёСЏ Рѕ фирме РЅР° странице Рѕ фирме
but the input function:
parsingSuccessful = reader.parse( buffer, root );
I pass escape sequence, for example this line:
\n\t\u0417\u0430 18 \u043b\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u044b
How to disable convert escape sequence to other encoding? |