设为首页 加入收藏

TOP

IOS中Json解析的四种方法(一)
2017-10-13 10:29:00 】 浏览:6046
Tags: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需要下载他们的库

源码案例:http://www.jinhusns.com/Products/Download/?type=xcj

TouchJson包下载: http://download.csdn.net/detail/enuola/4523169

SBJson 包下载: http://download.csdn.net/detail/enuola/4523177

JSONKit包下载:http://download.csdn.net/detail/enuola/4523160

下面的完整程序源码包下载:http://download.csdn.net/detail/enuola/4523223

免费培训课:http://www.jinhusns.com/Products/Curriculum/?type=xcj

PS:

国家气象局提供的天气预报接口

接口地址有三个:

http://www.weather.com.cn/data/sk/101010100.html

http://www.weather.com.cn/data/cityinfo/101010100.html

http://m.weather.com.cn/data/101010100.html

第三接口信息较为详细,提供的是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 str

首页 上一页 1 2 3 下一页 尾页 1/3/3
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇iOS 工厂方法模式 下一篇Scoket

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目