Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一个 JSONint数组解析到我的 C 程序中。这是我的输入的样子。
int
"category" : { "list" : [1, 2, 3, 4], "count" : 4}.
您总是可以编写自己的 JSON 解析算法,但为什么要重新发明轮子呢?有一些可用于 C 的优秀 JSON 库可以为您做到这一点。有关所有常见编程语言的 JSON 库列表,请参见http://www.json.org/ (它有 14 种不同的 C 可供选择)。