IOS中Json解析实例方法详解(四种方法)
作为一种轻量级的数据交换格式,json正在逐步取代xml,成为网络数据的通用格式。
有的json代码格式比较混乱,可以使用此“http://www.bejson.com/”网站来进行json格式化校验(点击打开链接)。此网站不仅可以检测json代码中的错误,而且可以以视图形式显示json中的数据内容,很是方便。
从ios5开始,apple提供了对json的原生支持(nsjsonserialization),但是为了兼容以前的ios版本,可以使用第三方库来解析json。
本文将介绍touchjson、 sbjson 、jsonkit 和 ios5所支持的原生的json方法,解析国家气象局api,touchjson和sbjson需要下载他们的库
touchjson包下载: http://xiazai.jb51.net/201612/yuanma/touchjson(jb51.net)
sbjson 包下载: http://xiazai.jb51.net/201612/yuanma/sbjson(jb51.net)
jsonkit包下载:http://xiazai.jb51.net/201612/yuanma/jsonkit(jb51.net)
下面的完整程序源码包下载:http://xiazai.jb51.net/201612/yuanma/sbjsonwz(jb51.net)
ps:
国家气象局提供的天气预报接口
接口地址有三个:
第三接口信息较为详细,提供的是6天的天气,关于api所返回的信息请见开源免费天气预报接口api以及全国所有地区代码!!(国家气象局提供),全国各城市对应这一个id号,根据改变id好我们就可以解析出来各个城市对应天气;
下面介绍四种方法解析json:
首先建立一个新的工程,(注意不要选择arc机制)添加如下控件:
如上图所示。下面展出程序代码:
文件 viewcontroller.h 中:
#import <uikit/uikit.h> @interface viewcontroller : uiviewcontroller @property (retain, nonatomic) iboutlet uitextview *txtview; - (ibaction)btnpresstouchjson:(id)sender; - (ibaction)btnpresssbjson:(id)sender; - (ibaction)btnpressios5json:(id)sender; - (ibaction)btnpressjsonkit:(id)sender; @end
文件viewcontroller.m中主要代码:
(1)使用touchjson解析方法:(需导入包:#import "touchjson/json/cjsondeserializer.h")
//使用touchjson来解析北京的天气 - (ibaction)btnpresstouchjson:(id)sender { //获取api接口 nsurl *url = [nsurl urlwithstring:@"http://m.weather.com.cn/data/101010100.html"]; //定义一个nserror对象,用于捕获错误信息 nserror *error; nsstring *jsonstring = [nsstring stringwithcontentsofurl:url encoding:nsutf8stringencoding error:&error]; nslog(@"jsonstring--->%@",jsonstring); //将解析得到的内容存放字典中,编码格式为utf8,防止取值的时候发生乱码 nsdictionary *rootdic = [[cjsondeserializer deserializer] deserialize:[jsonstring datausingencoding:nsutf8stringencoding] error:&error]; //因为返回的json文件有两层,去第二层内容放到字典中去 nsdictionary *weatherinfo = [rootdic objectforkey:@"weatherinfo"]; nslog(@"weatherinfo--->%@",weatherinfo); //取值打印 txtview.text = [nsstring stringwithformat:@"今天是 %@ %@ %@ 的天气状况是:%@ %@ ",[weatherinfo objectforkey:@"date_y"],[weatherinfo objectforkey:@"week"],[weatherinfo objectforkey:@"city"], [weatherinfo objectforkey:@"weather1"], [weatherinfo objectforkey:@"temp1"]]; }
(2)使用sbjson解析方法:(需导入包:#import "sbjson/sbjson.h")
//使用sbjson解析南阳的天气 - (ibaction)btnpresssbjson:(id)sender { nsurl *url = [nsurl urlwithstring:@"http://m.weather.com.cn/data/101180701.html"]; nserror *error = nil; nsstring *jsonstring = [nsstring stringwithcontentsofurl:url encoding:nsutf8stringencoding error:&error]; sbjsonparser *parser = [[sbjsonparser alloc] init]; nsdictionary *rootdic = [parser objectwithstring:jsonstring error:&error]; nsdictionary *weatherinfo = [rootdic objectforkey:@"weatherinfo"]; txtview.text = [nsstring stringwithformat:@"今天是 %@ %@ %@ 的天气状况是:%@ %@ ",[weatherinfo objectforkey:@"date_y"],[weatherinfo objectforkey:@"week"],[weatherinfo objectforkey:@"city"], [weatherinfo objectforkey:@"weather1"], [weatherinfo objectforkey:@"temp1"]]; }
(3)使用ios5自带解析类nsjsonserialization方法解析:(无需导入包,ios5支持,低版本ios不支持)
- (ibaction)btnpressios5json:(id)sender { nserror *error; //加载一个nsurl对象 nsurlrequest *request = [nsurlrequest requestwithurl:[nsurl urlwithstring:@"http://m.weather.com.cn/data/101180601.html"]]; //将请求的url数据放到nsdata对象中 nsdata *response = [nsurlconnection sendsynchronousrequest:request returningresponse:nil error:nil]; //ios5自带解析类nsjsonserialization从response中解析出数据放到字典中 nsdictionary *weatherdic = [nsjsonserialization jsonobjectwithdata:response options:nsjsonreadingmutableleaves error:&error]; nsdictionary *weatherinfo = [weatherdic objectforkey:@"weatherinfo"]; txtview.text = [nsstring stringwithformat:@"今天是 %@ %@ %@ 的天气状况是:%@ %@ ",[weatherinfo objectforkey:@"date_y"],[weatherinfo objectforkey:@"week"],[weatherinfo objectforkey:@"city"], [weatherinfo objectforkey:@"weather1"], [weatherinfo objectforkey:@"temp1"]]; nslog(@"weatherinfo字典里面的内容为--》%@", weatherdic ); }
(4)使用jsonkit的解析方法:(需导入包:#import "jsonkit/jsonkit.h")
- (ibaction)btnpressjsonkit:(id)sender { //如果json是“单层”的,即value都是字符串、数字,可以使用objectfromjsonstring nsstring *json1 = @"{\"a\":123, \"b\":\"abc\"}"; nslog(@"json1:%@",json1); nsdictionary *data1 = [json1 objectfromjsonstring]; nslog(@"json1.a:%@",[data1 objectforkey:@"a"]); nslog(@"json1.b:%@",[data1 objectforkey:@"b"]); [json1 release]; //如果json有嵌套,即value里有array、object,如果再使用objectfromjsonstring,程序可能会报错(测试结果表明:使用由网络或得到的php/json_encode生成的json时会报错,但使用nsstring定义的json字符串时,解析成功),最好使用objectfromjsonstringwithparseoptions: nsstring *json2 = @"{\"a\":123, \"b\":\"abc\", \"c\":[456, \"hello\"], \"d\":{\"name\":\"张三\", \"age\":\"32\"}}"; nslog(@"json2:%@", json2); nsdictionary *data2 = [json2 objectfromjsonstringwithparseoptions:jkparseoptionlooseunicode]; nslog(@"json2.c:%@", [data2 objectforkey:@"c"]); nslog(@"json2.d:%@", [data2 objectforkey:@"d"]); [json2 release]; }
另外,由于ios5新增了json解析的api,我们将其和其他五个开源的json解析库进行了解析速度的测试,下面是测试的结果。
我们选择的测试对象包含下面的这几个框架,其中nsjsonserialization是ios5系统新增的json解析的api,需要ios5的环境,如果您在更低的版本进行测试,应该屏蔽相应的代码调用。
- [sbjson (json-framework)](http://code.google.com/p/json-framework/) - [touchjson (from touchcode)](http://code.google.com/p/touchcode/) - [yajl (objective-c bindings)](http://github.com/gabriel/yajl-objc) - [jsonkit](https://github.com/johnezang/jsonkit) - [nextivejson](https://github.com/nextive/nextivejson) -[nsjsonserialization](http://developer.apple.com/library/ios/#documentation/foundation/reference/nsjsonserialization_class/reference/reference.html#//apple_ref/doc/uid/tp40010946)
我们选择了四个包含json格式的数据的文件进行测试。每一个文件进行100的解析动作,对解析的时间进行比较。
.....
测试的结果显示,系统的api的解析速度最快,我们在工程项目中选择使用,也是应用较为广泛的sbjson的解析速度为倒数第二差,令我大跌眼镜。
与系统api较为接近的应该是jsonkit。
这里没有对api的开放接口和使用方式进行比较,若单纯基于以上解析速度的测试:
1:ios5应该选择系统的api进行
2:不能使用系统api的应该选择jsonkit
以上所述是小编给大家介绍的ios中json解析实例方法详解(四种方法)的全部叙述,希望对大家有所帮助
推荐阅读
-
详解iOS App中UIPickerView滚动选择栏的添加方法
-
详解iOS App中UISwitch开关组件的基本创建及使用方法
-
java 中createStatement()方法的实例详解
-
jQuery解析返回的xml和json方法详解
-
JFrame中添加和设置JPanel的方法实例解析
-
iOS中监听UITextField值改变事件的方法实例
-
Jquery遍历筛选数组的几种方法和遍历解析json对象,Map()方法详解以及数组中查询某值是否存在
-
详解iOS中UIView的layoutSubviews子视图布局方法使用
-
iOS应用开发中对UIImage进行截取和缩放的方法详解
-
详解iOS应用中自定义UIBarButtonItem导航按钮的创建方法