关于JSONKit的使用

前端之家收集整理的这篇文章主要介绍了关于JSONKit的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

刚接触JSON解析的时候,使用的是SBJSON解析工具,知道了不同工具解析速度有偏差的时候才开始好好研究这个问题。下面有一个关于解析速度的柱状图,我们可以一目了然。

时间轴越短,解析越快;json-framework即SBJSON;

可以看到jsonkit 的解析速度还是很快的而SBJSON的速度让人失望,ios5 之后提供了NSJSONSerialization,其速度比jsonkit要快,但是只有ios5 之后才支持因此我选择使用jsonkit。

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

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


首先要下载jsonkit文件,只有两个文件,这也更加证明使用它是很简单的。


下面写一个简单的程序使用一下JSONKit

  1. #import<Foundation/Foundation.h>
  2. #import"JSONKit.h"
  3. intmain(intargc,constchar*argv[]){

  4. @autorelease{
  5. NSString*res=nil;
  6. /*
  7. *json格式编码
  8. */
  9. //字符串
  10. NSString*str=@"thisisansstring";
  11. res=[strJSONString];
  12. NSLog(@"res=%@",[NSStringstringWithString:res]);
  13. //res="thisisansstring"
  14. //数组
  15. NSArray*arr=[[NSArrayalloc]initWithObjects:@"One",@"Two",@"Three",nil];
  16. res=[arrJSONString];
  17. NSLog(@"res=%@",[NSStringstringWithString:res]);
  18. [arrrelease];
  19. //res=["One","Two","Three"]
  20. //字典类型(对象)
  21. NSArray*arr1=[NSArrayarrayWithObjects:@"dog",@"cat",nil];
  22. NSArray*arr2=[NSArrayarrayWithObjects:[NSNumbernumberWithBool:YES],[NSNumbernumberWithInt:30],nil];
  23. NSDictionary*dic=[NSDictionarydictionaryWithObjectsAndKeys:arr1,@"pets",arr2,@"other",nil];
  24. res=[dicJSONString];
  25. NSLog(@"res=%@",[NSStringstringWithString:res]);
  26. //res={"pets":["dog","cat"],"other":[true,30]}
  27. /*
  28. *json格式解码
  29. */
  30. JSONDecoder*jd=[[JSONDecoderalloc]init];
  31. //针对NSData数据
  32. NSData*data=[dicJSONData];
  33. NSDictionary*ret=[jdobjectWithData:data];
  34. NSLog(@"res=%@",[retobjectForKey:@"pets"]);
  35. //res=(
  36. //dog,
  37. //cat
  38. //)
  39. NSLog(@"res=%@",[[retobjectForKey:@"other"]objectAtIndex:0]);
  40. //res=1
  41. //针对NSString字符串数据
  42. NSString*nstr=[dicJSONString];
  43. NSDictionary*ret2=[jdobjectWithUTF8String:(constunsignedchar*)[nstrUTF8String]length:(unsignedint)[nstrlength]];
  44. NSLog(@"res=%d",[[ret2objectForKey:@"pets"]indexOfObject:@"cat"]);
  45. //res=1
  46. NSLog(@"res=%@",[[ret2objectForKey:@"other"]objectAtIndex:1]);
  47. //res=30
  48. [jdrelease];
  49. }
  50. return0;
  51. }
常用的只有几个方法,很简单吧 原文链接:https://www.f2er.com/json/290566.html

猜你在找的Json相关文章