Json是一种类似XML的数据传输方式。已经是一种普遍使用的网络传输格式。
以下是我使用json的总结。
经常会用到json在序列化和反序列。不多说,用例子说明一切。
1.把json数据解析成通用数据的实例:
id jsonObject =[jsonString JSONValue];
通过判断jsonObject在类型解析数据。
2.把数据组织成jason数据的实例:
{"age":30,"name":"xcode","num":["first","second","third"]}
NSMutableDictionary*jsonDic= [NSMutableDictionarydictionaryWithCapacity:4];
NSNumber*age= [NSNumbernumberWithInt:30];
NSArray*aArray= [NSArrayarrayWithObjects:@"first",@"second",@"third",nil];
[jsonDicsetObject:@"xcode"forKey:@"name"];
[jsonDicsetObject:ageforKey:@"age"];
[jsonDicsetObject:aArrayforKey:@"num"];
SBJsonWriter*jsonWriter= [[SBJsonWriteralloc]init];
NSString*jsonStr= [jsonWriterstringWithObject:jsonDic];
NSData*jsonData= [jsonWriterdataWithObject:jsonDic];
注:json内容被SBJson转换为Objective-C的类型的方式如下: