【移动应用开发技术】Json数据解析后分类思路_第1页
【移动应用开发技术】Json数据解析后分类思路_第2页
【移动应用开发技术】Json数据解析后分类思路_第3页
【移动应用开发技术】Json数据解析后分类思路_第4页
【移动应用开发技术】Json数据解析后分类思路_第5页
免费预览已结束,剩余2页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

【移动应用开发技术】Json数据解析后分类思路

Json数据解析后分类思路代码下载地址:

"大字典2.zip"/s/HzjOj我们这里已从新浪微博中请求回来的数据作为例子。为了让工程简化,我将数据写入到本地了。这里主要是为了学习如何将Json数据解析分类。新浪微博请求返回来的数据大致格式如下:{

"statuses":[

{

"created_at":"TueMay3117:46:55+08002011",

"id":11488058246,

"text":"求关注。",

"source":"<ahref=""rel="nofollow">新浪微博</a>",

"favorited":false,

"truncated":false,

"in_reply_to_status_id":"",

"in_reply_to_user_id":"",

"in_reply_to_screen_name":"",

"geo":null,

"mid":"5612814510546515491",

"reposts_count":8,

"comments_count":9,

"annotations":[],

"user":{

"id":1404376560,

"screen_name":"zaku",

"name":"zaku",

"province":"11",

"city":"5",

"location":"北京朝阳区",

"description":"人生五十年,乃如梦如幻;有生斯有死,壮士复何憾。",

"url":"/zaku",

"profile_p_w_picpath_url":"/1404376560/50/0/1",

"domain":"zaku",

"gender":"m",

"followers_count":1204,

"friends_count":447,

"statuses_count":2908,

"favourites_count":0,

"created_at":"FriAug2800:00:00+08002009",

"following":false,

"allow_all_act_msg":false,

"remark":"",

"geo_enabled":true,

"verified":false,

"allow_all_comment":true,

"avatar_large":"/1404376560/180/0/1",

"verified_reason":"",

"follow_me":false,

"online_status":0,

"bi_followers_count":215

}

},

...

],

"previous_cursor":0,//暂未支持

"next_cursor":11488013766,//暂未支持

"total_number":81655

}以上的示例来自新浪微博官网。我标出的红色字体,是我们JSon解析分类的依据,他们都是字典,也就是说JSon解析分类的思路是按照字典去新建类,类与类之间的嵌套关系和JSon数据的格式相同,这我JSon解析的方法。我来看一下代码如何实现的:新建User类用来存放user字典中的内容。.h文件如下:#import<Foundation/Foundation.h>

@interfaceUser:NSObject

@property(strong,nonatomic)NSString*screen_name;

-(User*)initWithJsonDictionary:(NSDictionary*)dic;

+(User*)UserWithJsonDictionary:(NSDictionary*)dic;

@end.m文件如下:@implementationUser

-(User*)initWithJsonDictionary:(NSDictionary*)dic

{

if(self=[superinit]){

self.screen_name=[dicobjectForKey:@"screen_name"];

}

returnself;

}

+(User*)UserWithJsonDictionary:(NSDictionary*)dic

{

//用这个类方法进行初始化的时候,都会alloc一次,因此就会新分配一块空间

return[[Useralloc]initWithJsonDictionary:dic];

}新建Status类用来存放statuses字典中的内容。.h文件如下:#import<Foundation/Foundation.h>

#import"User.h"

@interfaceStatus:NSObject

@property(strong,nonatomic)NSString*userID;

//将多个字典嵌套的数据取出的思路是为每一个字典对应的建一个数据模型的类

//例如:User类

@property(strong,nonatomic)User*user;

-(Status*)initWithJsonDictionary:(NSDictionary*)dic;

+(Status*)statusWithJsonDictionary:(NSDictionary*)dic;

@end.m文件如下:@implementationStatus

-(Status*)initWithJsonDictionary:(NSDictionary*)dic

{

if(self=[superinit]){

self.userID=[dicobjectForKey:@"idstr"];

NSDictionary*userDic=[dicobjectForKey:@"user"];

if(userDic){

self.user=[UserUserWithJsonDictionary:userDic];

}

}

returnself;

}

+(Status*)statusWithJsonDictionary:(NSDictionary*)dic

{

//用这个类方法进行初始化的时候,都会alloc一次,因此就会新分配一块空间

return[[Statusalloc]initWithJsonDictionary:dic];

}为了模拟在真实项目中,获得数据的类和显示数据的类不在一个类中我们新建一个试图控制器用来显示数据,我们显示数据的位置是在控制台。OtherViewController.h代码如下:#import<UIKit/UIKit.h>

@interfaceOtherViewController:UIViewController

@property(strong,nonatomic)NSArray*statusArr;

@endOtherViewController.m代码实现如下://用来接收通过消息机制发送来的数据

-(void)getArray:(NSNotification*)aNotification

{

self.statusArr=aNotification.object;

}-(void)viewDidLoad

{

[superviewDidLoad];

//Doanyadditionalsetupafterloadingtheview.

//添加一个按钮点击显示数据

UIButton*btn=[UIButtonbuttonWithType:UIButtonTypeRoundedRect];

btn.frame=CGRectMake(30,30,30,30);

[self.viewaddSubview:btn];

[btnaddTarget:selfaction:@selector(displayUserInfo)forControlEvents:UIControlEventTouchUpInside];

}-(void)displayUserInfo

{

Status*status=[self.statusArrobjectAtIndex:0];

NSLog(@"status.userID=%@",status.userID);

NSLog(@"status.user.screen_name=%@",status.user.screen_name);

}最后,我们来看一下最后的一个类,我们从这个类中获取数据,获取数据的本地文件在代码例子中。ViewController.h代码如下:#import<UIKit/UIKit.h>

@interfaceViewController:UIViewController

-(IBAction)changeVC:(id)sender;

@endViewController.m文件的代码实现如下:需要在Xib中拖一个Button与下面的方法相关联-(IBAction)changeVC:(id)sender

{

//将JSON格式的数据文件的路径找出

NSString*path=[[NSBundlemainBundle]pathForResource:@"jsonTest"ofType:@"json"];

//将数据放入NSData中

NSData*data=[NSDatadataWithContentsOfFile:path];

//JSON解析

NSDictionary*dic=[NSJSONSerializationJSONObjectWithData:dataoptions:NSJSONReadingMutableLeaveserror:nil];

//NSLog(@"dic=%@",dic);

NSArray*arr=[dicobjectForKey:@"statuses"];

NSLog(@"%d",arr.count);

NSLog(@"arr=%@",arr);

//初始化一个数组

NSMutableArray*tempArr=[NSMutableArrayarray];

//将数组中的字典放入Status模型中,大家在这里会有一个疑问将数组中的字典都放入模型中,怎么区分不同数组中的数据?

for(NSDictionary*iteminarr){

//答案在statusWithJsonDictionary:的类方法中见该方法注释

Status*status=[StatusstatusWithJsonDictionar

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论