现在的位置: 首页 > 综合 > 正文

JSONKit 使用示例

2014年11月03日 ⁄ 综合 ⁄ 共 2280字 ⁄ 字号 评论关闭

JSONKit是Object-C一个处理json数据的库,非常高效而且易用,对比同类型的库有非常明显的性能优势,见下图:

JSON和Object-C中数据类型的映射关系如下表所示

 

JSON Objective-C
null NSNull
true and false NSNumber
Number NSNumber
String NSString
Array NSArray
Object NSDictionary

 

下面写一个简单的程序使用一下JSONKit(只需下载头文件以及源文件,放在项目目录下

 

  1. #import   
  2. #import "lib/JSONKit.h"  
  3.   
  4. int main (int argc, const char argv[])  
  5.     NSAutoreleasePool pool [[NSAutoreleasePool alloc] init];  
  6.   
  7.     NSString *res nil;  
  8.       
  9.       
  10.       
  11.     //字符串  
  12.     NSString *str @"this is nsstring" 
  13.     res [str JSONString];  
  14.     NSLog(@"res= %@"[NSString stringWithString: res]);  
  15.     //res= "this is nsstring"  
  16.       
  17.   
  18.     //数组  
  19.     NSArray *arr [[NSArray alloc] initWithObjects:@"One",@"Two",@"Three",nil];  
  20.     res [arr JSONString];  
  21.     NSLog(@"res= %@"[NSString stringWithString: res]);  
  22.     [arr release];  
  23.     //res= ["One","Two","Three"]  
  24.       
  25.   
  26.     //字典类型(对象)  
  27.     NSArray *arr1 [NSArray arrayWithObjects:@"dog",@"cat",nil];  
  28.     NSArray *arr2 [NSArray arrayWithObjects:[NSNumber numberWithBool:YES],[NSNumber numberWithInt:30],nil];  
  29.     NSDictionary *dic [NSDictionary dictionaryWithObjectsAndKeys:arr1,@"pets",arr2,@"other",nil];  
  30.     res [dic JSONString];  
  31.     NSLog(@"res= %@"[NSString stringWithString: res]);  
  32.     //res= {"pets":["dog","cat"],"other":[true,30]}   
  33.       
  34.       
  35.       
  36.     JSONDecoder *jd=[[JSONDecoder alloc] init];  
  37.       
  38.     //针对NSData数据  
  39.     NSData *data [dic JSONData];  
  40.     NSDictionary *ret [jd objectWithData: data];  
  41.     NSLog(@"res= %@"[ret objectForKey:@"pets"]);  
  42.     //res= (  
  43.     //  dog,  
  44.     //  cat  
  45.     //)  
  46.     NSLog(@"res= %@"[[ret objectForKey:@"other"objectAtIndex:0]);  
  47.     //res= 1  
  48.       
  49.     //针对NSString字符串数据  
  50.     NSString *nstr [dic JSONString];  
  51.     NSDictionary *ret2 [jd objectWithUTF8String:(const unsigned char *)[nstr UTF8String] length:(unsigned int)[nstr length]];  
  52.     NSLog(@"res= %d"[[ret2 objectForKey:@"pets"indexOfObject:@"cat"]);  
  53.     //res= 1  
  54.     NSLog(@"res= %@"[[ret2 objectForKey:@"other"objectAtIndex:1]);  
  55.     //res= 30  
  56.       
  57.     [jd release];  
  58.       
  59.     [pool drain];  
  60.     return 0;  
  61.  

 

JSONKit的接口中还可以自行定制序列化和反序列化选项,针对如何提升效率作者也是给了很多使用的建议,例如尽量使用NSData来替换NSString类型,因为JSON数据通常是用来通信使用,而通信过程使用NSData类型更为高效,毕竟是二进制流数据更短,所以没必要转成NSString多此一举了。不知道我理解得对不对。

抱歉!评论已关闭.