刚接触JSON解析的时候,使用的是SBJSON解析工具,知道了不同工具解析速度有偏差的时候才开始好好研究这个问题。下面有一个关于解析速度的柱状图,我们可以一目了然。
时间轴越短,解析越快;json-framework即SBJSON;
可以看到jsonkit 的解析速度还是很快的而SBJSON的速度让人失望,ios5 之后提供了NSJSONSerialization,其速度比jsonkit要快,但是只有ios5 之后才支持因此我选择使用jsonkit。
JSON和Object-C中数据类型的映射关系如下表所示
JSON | Objective-C |
---|---|
null |
NSNull |
trueandfalse |
NSNumber |
String | NSString |
NSArray | |
NSDictionary |
首先要下载jsonkit文件,只有两个文件,这也更加证明使用它是很简单的。
下面写一个简单的程序使用一下JSONKit
- #import<Foundation/Foundation.h>
- #import"JSONKit.h"
- intmain(intargc,constchar*argv[]){
-
- @autorelease{
- NSString*res=nil;
- /*
- *json格式编码
- */
- //字符串
- NSString*str=@"thisisansstring";
- res=[strJSONString];
- NSLog(@"res=%@",[NSStringstringWithString:res]);
- //res="thisisansstring"
- //数组
- NSArray*arr=[[NSArrayalloc]initWithObjects:@"One",@"Two",@"Three",nil];
- res=[arrJSONString];
- NSLog(@"res=%@",[NSStringstringWithString:res]);
- [arrrelease];
- //res=["One","Two","Three"]
- //字典类型(对象)
- NSArray*arr1=[NSArrayarrayWithObjects:@"dog",@"cat",nil];
- NSArray*arr2=[NSArrayarrayWithObjects:[NSNumbernumberWithBool:YES],[NSNumbernumberWithInt:30],nil];
- NSDictionary*dic=[NSDictionarydictionaryWithObjectsAndKeys:arr1,@"pets",arr2,@"other",nil];
- res=[dicJSONString];
- NSLog(@"res=%@",[NSStringstringWithString:res]);
- //res={"pets":["dog","cat"],"other":[true,30]}
- /*
- *json格式解码
- */
- JSONDecoder*jd=[[JSONDecoderalloc]init];
- //针对NSData数据
- NSData*data=[dicJSONData];
- NSDictionary*ret=[jdobjectWithData:data];
- NSLog(@"res=%@",[retobjectForKey:@"pets"]);
- //res=(
- //dog,
- //cat
- //)
- NSLog(@"res=%@",[[retobjectForKey:@"other"]objectAtIndex:0]);
- //res=1
- //针对NSString字符串数据
- NSString*nstr=[dicJSONString];
- NSDictionary*ret2=[jdobjectWithUTF8String:(constunsignedchar*)[nstrUTF8String]length:(unsignedint)[nstrlength]];
- NSLog(@"res=%d",[[ret2objectForKey:@"pets"]indexOfObject:@"cat"]);
- //res=1
- NSLog(@"res=%@",[[ret2objectForKey:@"other"]objectAtIndex:1]);
- //res=30
- [jdrelease];
- }
- return0;
- }