c语言json排序问题,我将如何排序的json结果,我是因为我的JSON结果格式的困惑...

`"{

"24":"Andaman and Nicobar Islands",

"31":"Andhra Pradesh",

"8":"Arunachal Pradesh",

"32":"Assam",

"33":"Bihar",

"28":"Chandigarh",

"30":"Chhattisgarh",

"20":"Dadra and Nagar Haveli",

"27":"Daman and Diu",

"36":"Delhi",

"39":"Goa",

"23":"Gujarat",

"18":"Haryana",

"38":"Himachal Pradesh",

"1":"Jammu & Kashmir",

"5":"Jammu and Kashmir",

"21":"Jharkhand",

"35":"Karnataka",

"7":"Kerala",

"3":"Lakshadweep",

"40":"Madhya Pradesh",

"4":"Maharashtra",

"26":"Manipur",

"16":"Meghalaya",

"37":"Mizoram",

"14":"Nagaland",

"29":"National Capital Region (India)",

"19":"Odisha",

"2":"Orissa",

"34":"Puducherry",

"6":"Punjab",

"12":"Rajasthan",

"15":"Sikkim",

"25":"Tamil Nadu",

"17":"TamilNadu",

"9":"Tripura",

"22":"Uttar Pradesh",

"10":"Uttarakhand",

"11":"West Bengal"

}"`

我发现JSON许多文章排序,但他们有不同的格式,我想这就是为什么它不工作我尝试以下 url_1

我是JSON和jquery的新手,请客气。

+0

http://stackoverflow.com/help/how-to-ask - 尤其是预期/所需VS实际输出,以及你想这个到代码运行也很有帮助 –

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
cJSON源码,为c语言编写,里面含有测试案例,需要用的自取。可以创建json字符串。 ## Usage ### Welcome to cJSON. cJSON aims to be the dumbest possible parser that you can get your job done with. It's a single file of C, and a single header file. JSON is described best here: http://www.json.org/ It's like XML, but fat-free. You use it to move data around, store things, or just generally represent your program's state. As a library, cJSON exists to take away as much legwork as it can, but not get in your way. As a point of pragmatism (i.e. ignoring the truth), I'm going to say that you can use it in one of two modes: Auto and Manual. Let's have a quick run-through. I lifted some JSON from this page: http://www.json.org/fatfree.html That page inspired me to write cJSON, which is a parser that tries to share the same philosophy as JSON itself. Simple, dumb, out of the way. ### Building There are several ways to incorporate cJSON into your project. #### copying the source Because the entire library is only one C file and one header file, you can just copy `cJSON.h` and `cJSON.c` to your projects source and start using it. cJSON is written in ANSI C (C89) in order to support as many platforms and compilers as possible. #### CMake With CMake, cJSON supports a full blown build system. This way you get the most features. CMake with an equal or higher version than 2.8.5 is supported. With CMake it is recommended to do an out of tree build, meaning the compiled files are put in a directory separate from the source files. So in order to build cJSON with CMake on a Unix platform, make a `build` directory and run CMake inside it. ``` mkdir build cd build cmake .. ``` This will create a Makefile and a bunch of other files. You can then compile it: ``` make ``` And install it with `make install` if you want. By default it installs the headers `/usr/local/include/cjson` and the libraries to `/usr/local/lib`. It also installs files for pkg-config to make it ea
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值