JSON建构有两种结构:
json简单说就是javascript中的对象和数组,所以这两种结构就是对象和数组2种结构,通过这两种结构可以表示各种复杂的结构
1、对象:对象在js中表示为“{}”扩起来的内容,数据结构为 {key:value,key:value,...}的键值对的结构,在面向对象的语言中,key为对象的属性,value为对应的属性值,所以很容易理解,取值方法为对象.key 获取属性值,这个属性值的类型可以是数字、字符串、数组、对象几种。
2、数组:数组在js中是中括号“[]”扩起来的内容,数据结构为 ["java","javascript","vb",...],取值方式和所有语言中一样,使用索引获取,字段值的类型可以是数字、字符串、数组、对象几种。
经过对象、数组2种结构就可以组合成复杂的数据结构了。
NSJSONSerialization
使用系统自带JSon解析类——IOS5支持
http://developer.apple.com/library/ios/#documentation/Foundation/Reference/NSJSONSerialization_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40010946
NSJSONSerialization在效率上完胜SBJSON、TouchJSON、YAJL、JSONKit、NextiveJson
1 json转对象
对象数据格式须为NSData类型
1-1
NSError *error;
id jsonObj = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
2 对象转Json
对象须为指定类型,如NSString, NSNumber, NSArray, NSDictionary, NSNull等,当对象为NSDictionary类型时,其中的keys类型必须为NSString
2-1
转换成Json前先判断是否可以转换的“[NSJSONSerialization isValidJSONObject:obj]”
2-2
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:obj options:NSJSONWritingPrettyPrinted error:&error];
其他解析工具
1 TouchJson——http://code.google.com/p/touchcode/
下载:http://download.csdn.net/detail/enuola/4523169
使用TouchJSon解析方法:(需导入包:#import "TouchJson/JSON/CJSONDeserializer.h")
2 SBJson——http://code.google.com/p/json-framework/
下载:http://download.csdn.net/detail/enuola/4523177
使用SBJson解析方法:(需导入包:#import "SBJson/SBJson.h")
3 JSONKit——https://github.com/johnezang/JSONKit
下载:http://download.csdn.net/detail/enuola/4523160
使用JSONKit的解析方法:(需导入包:#import "JSONKit/JSONKit.h")