There are several C libraries available for parsing JSON, that will compile on Linux. Which library would you recommend?
相关问题
- Jackson Deserialization not calling deserialize on
- Multiple sockets for clients to connect to
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- What is the best way to do a search in a large fil
Just to close the loop:
For the project in question, we ended up going with cJSON. We chose this one from the list of C libraries linked from json.org. Per the homepage, cJSON is:
This happened to be a good fit for the particular project at hand, and the library worked out fine.
Check out the list at json.org. There are several C libraries for JSON.
I've seen
YAJL
used withMGTwitterEngine
(Mac/Cocoa), so I assume it is ok.I haven't done much with it apart from compiling it and pointing
MGTwitterEngine
on Mac to its library/header files.