Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for recommendations for a reliable and functional cross-platform JSON library that can be called from either C or C++ and which can be used with Linux, Mac OS X and WIN32. Ideally it should support both generating JSON output as well as parsing JSON input.

I've looked at a lot of the open source options but it's hard to tell how mature, reliable and well-documented each of the various libraries are, so I'm really looking for individual recommendations from developers who have successfully used or at least evaluated one or more of the various options.

share|improve this question
1  
You could take a look at this question: stackoverflow.com/questions/245973/whats-the-best-c-json-parser – rob Apr 3 at 2:28

6 Answers

up vote 3 down vote accepted

I used JsonCpp.

share|improve this answer
Thanks for that - could you elaborate a little as to how useful/reliable you have found it to be ? – Paul R Feb 28 '10 at 12:39
1  
I found it reliable and easier to integrate compared to JSON Spirit that relies on Boost. Not that I dislike Boost but for that pet project I didn't want to bother with it. – Gregory Pakosz Feb 28 '10 at 21:58

I am the author of rapidjson. I can give a few advantages of it.

rapidjson uses many features of C++ in order to make a high performance and flexible solution for parsing and generation. A performance comparison with several C++ JSON parsers/generators was given at http://code.google.com/p/rapidjson/wiki/Performance

It is a header-only solution as well, i.e. integrating into projects is just by copying a few headers.

It also not depending on BOOST or STL.

Currently it tests on multiple versions of msvc and gcc, on Windows and Linux. Some users feedback it also works on some other compilers/platforms. It is designed for 32-bit and 64-bit architecture as well.

share|improve this answer
I think this is great... I experimented with some other c/c++ json libraries and what I like the most about rapidjson is the fact that it is just headers so no need to build and link libraries. It makes porting super easy! Thanks Milo! – dhruv chopra Apr 1 at 18:07

wxWidgets comes with wxJson, a small implementation that can read and write JSON files. Not sure exactly what your needs are, but if you are writing something from scratch, maybe this is useful. I've used wxWidgets with OSX and Windows, and after the initial configuration pains, it ports very nicely.

share|improve this answer
Thanks - will wxJson build on its own, do you know. or do you need to build the whole of wxWidgets ? – Paul R Feb 28 '10 at 18:01
wxJson is just 3 files. For what I know it should have dependencies to wxWidgets - but a minimum library build should be very light. I've had compiled GUI apps using wxWidgets that are about 300k, and that is using all sorts of goodies... – cjcela Mar 2 '10 at 23:46

rapidjson

This is a C++ JSON library aiming at the fastest JSON parser and generator. No boost, even not STL.

share|improve this answer

I've successfully used cJSON in a C project. It is nice that the cJSON library consists of only one header and one source file!

share|improve this answer
As a C library, it is the best I have seen. – Lorenzo Dematté Dec 22 '11 at 16:22

You can try using Jansson. It is cross platform too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.