Possible Duplicate:
Best Way To Parse JSON in C?
我需要在申请中整理、验证和查询JSON数据,我正在寻找最佳的CJSON图书馆的建议。
这些数据将作为图表(Cchar* UTF-8数据)输入,我首先需要加以验证,以确保投入是有效的JSON,然后我需要做一些简单的询问(重复数据)。
I do not need to produce JSON, I only need to consume it. I also would prefer a parser that will load the whole document into memory rather than a SAX-style parser.
任何人能否推荐一个好的图书馆,或者任何人在图书馆有经验或存在问题?
I have seen the list of libraries in C on JSON.org - are there any good libraries missing from this list?
我要求建立一个规模不大的小型图书馆,拥有尽可能少的密码/操作时间,并颁发永久的BSD/MIT风格许可证,因为我的图书馆将被纳入其他应用。
Thanks,
Marc