iphone开发之SBJSON解析(的使用)
bjson有一个有用的sbjsonparser类,可以在一行内搞定整个json串的解析:
SBJsonParser *jsonParser = [[SBJsonParser alloc] init]; NSError *error = nil; NSArray *jsonObjects = [jsonParser objectWithString:jsonString error:&error]; [jsonParser release], jsonParser = nil;
sbjson将json作为objective-c的字典来处理。对于不同的webservice,你可能得到一个顶级的json对象或者一个数组。因此,objectWithString:error:有一个id类型返回值。你可以使用objective-c的动态特性来决定解析返回时采用何种数据来接收,如下:
id jsonObject = [jsonParser objectWithString:jsonString error:&error]; if ([jsonObject isKindOfClass:[NSDictionary class]]) // treat as a dictionary, or reassign to a dictionary ivar else if ([jsonObject isKindOfClass:[NSArray class]]) // treat as an array or reassign to an array ivar.
转换代码: 如果直接使用 NSMutableDictionary *root 来获得 字符串,将会对json字串产生以下变化
1. 中文问题
2.加入了()符号
3.所有的: 变成了 =
要避免这个问题的产生,需要用
SBJsonWriter *jsonWriter = [[SBJsonWriter alloc] init];
NSString *jsonString = [jsonWriter stringWithObject:root];
[jsonWriter release];
这段代码来把 NSMutableDictionary 转成 NSString
SBJson的项目官网,以及源文件下载 https://github.com/stig/json-framework/downloads
xcode4.2.1 中使用 sbjson 的 3.1版本来解析json字符串:
http://blog.csdn.net/remote_roamer/article/details/7021640