加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

JSONKit 使用示例

发布时间:2020-12-16 19:50:51 所属栏目:百科 来源:网络整理
导读:JSONKit是Object-C一个处理json数据的库,非常高效而且易用,对比同类型的库有非常明显的性能优势,见下图: 使用示例" style="margin:0px; padding:0px; border:0px none; list-style:none" src="http://my.csdn.net/uploads/201207/14/1342229236_3926.png

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


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

Number Array
JSON Objective-C
null NSNull
trueandfalse NSNumber
NSNumber
String NSString
NSArray
Object NSDictionary

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

[cpp] view plain copy
  1. #import
  2. #import"lib/JSONKit.h"
  3. intmain(intargc,constchar*argv[]){
  4. NSAutoreleasePool*pool=[[NSAutoreleasePoolalloc]init];
  5. NSString*res=nil;
  6. //字符串
  7. NSString*str=@"thisisansstring";
  8. res=[strJSONString];
  9. NSLog(@"res=%@",[NSStringstringWithString:res]);
  10. //res="thisisansstring"
  11. //数组
  12. NSArray*arr=[[NSArrayalloc]initWithObjects:@"One",@"Two",@"Three",nil];
  13. res=[arrJSONString];
  14. NSLog(@"res=%@",248); line-height:18px"> [arrrelease];
  15. //res=["One","Two","Three"]
  16. //字典类型(对象)
  17. NSArray*arr1=[NSArrayarrayWithObjects:@"dog",@"cat",248); line-height:18px"> NSArray*arr2=[NSArrayarrayWithObjects:[NSNumbernumberWithBool:YES],[NSNumbernumberWithInt:30],nil];
  18. NSDictionary*dic=[NSDictionarydictionaryWithObjectsAndKeys:arr1,@"pets",arr2,@"other",248); line-height:18px"> res=[dicJSONString];
  19. //res={"pets":["dog","cat"],"other":[true,30]}
  20. JSONDecoder*jd=[[JSONDecoderalloc]init];
  21. //针对NSData数据
  22. NSData*data=[dicJSONData];
  23. NSDictionary*ret=[jdobjectWithData:data];
  24. "pets"]);
  25. //res=(
  26. //dog,
  27. //cat
  28. //)
  29. "other"]objectAtIndex:0]);
  30. //res=1
  31. //针对NSString字符串数据
  32. NSString*nstr=[dicJSONString];
  33. NSDictionary*ret2=[jdobjectWithUTF8String:(constunsignedchar*)[nstrUTF8String]length:(unsignedint)[nstrlength]];
  34. NSLog(@"res=%d",[[ret2objectForKey:@"pets"]indexOfObject:@"cat"]);
  35. "other"]objectAtIndex:1]);
  36. //res=30
  37. [jdrelease];
  38. [pooldrain];
  39. return0;
  40. }

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读