当前位置: 首页 > 工具软件 > JSONKit > 使用案例 >

JSONKit

杜元明
2023-12-01
1.将字典或者数组反序列化为NSString.
    NSMutableDictionary *jsonDic = [NSMutableDictionary dictionary];
    NSMutableDictionary *alert = [NSMutableDictionary dictionary];
    NSMutableDictionary *aps = [NSMutableDictionary dictionary];
    [alert setObject:@"a msg come!" forKey:@"body"];
    [aps setObject:alert forKey:@"alert"];
    [aps setObject:@"3" forKey:@"bage" ];
    [aps setObject:@"def.mp3" forKey:@"sound"];
    [jsonDic setObject:aps forKey:@"aps"];
   
    NSString *strJson = [jsonDic JSONString];
   
    NSLog(@"%@",strJson);


2.将NSString反序列化为数组、字典.
    NSDictionary *result = [strJson  objectFromJSONString];
或者
   NSDictionary *result = [dataJson  objectFromJSONData];
   

    NSLog(@"333%@",result);


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

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

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

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


相关阅读

相关文章

相关问答