jsoncpp icon indicating copy to clipboard operation
jsoncpp copied to clipboard

A C++ library for interacting with JSON.

Results 118 jsoncpp issues
Sort by recently updated
recently updated
newest added

When serializing JSON data, how to optimize if the CPU utilization is too high?

I noticed the examples/readStream and writeStream. but it seems, the stored content is string. i think it may be not the most efficient ways to serialize. is there any binary...

**Describe the bug** I want to use SHAERD add_library to link my code file. This is my code `add_library(${PROJECT_NAME} SHARED settingParser.cpp settingParser.h)` `target_link_libraries(${PROJECT_NAME} "-Wl,--whole-archive" jsoncpp "-Wl,--no-whole-archive" "-fPIC")` ERROR is :...

**Describe the bug** inf and -inf don't round trip if useSpecialFloats is false. **To Reproduce** Steps to reproduce the behavior: ``` Json::Value testJson(Json::arrayValue); testJson[0] = 25.0; testJson[1] = 0.0; testJson[2]...

Hi , I am using JsonCPP library in my C++ project . I created a C++ dll with a function which will take Json::Value as input parameter . I have...

**Describe the bug** Random crash when parsing a document. This happens once in a while on a dozens of remote clients. Almost exact stack trace can be seen with v.0.7.0...

needs more info

I have a JSON object struct and there is only one specific float type member which I have to export to JSON with exactly one decimal digit after the comma...

**Is your feature request related to a problem? Please describe.** If you use asString() on ANY type it will convert that value to a string (even if it is not...

**Is your feature request related to a problem? Please describe.** I have to cast to long or long long from DWORD (unsigned long) every time I want to insert or...