JSON数据格式, 是由数组和字典嵌套组成的, 可能会因为数据复杂而使得嵌套层次变得不容易分析数据, 一下两个网址可以实现JSON数据的格式化, 方便我们理清楚数据的嵌套关系.
JSON 格式化工具: http://www.runoob.com/jsontool
在线代码格式化: http://tool.oschina.net/codeformat/js/
iOS中常见的JSON解析方式
- iOS原生(Foundation框架自带的解析工具): <b>NSJSONSerialization</b>(性能最好)
-
第三方:<b> JSONKit</b>, SBJSON, TouchJSON(性能: 从左到右相对较差)
第一种: NSJSONSerialization苹果原生解析步骤
#import "ThirdViewController.h"
@interface ThirdViewController ()
//创建数据源数组, 用来存放解析出来的数据(此处创建数据源容器, 是根据解析数据的框架来确定的)
@property (strong , nonatomic) NSMutableArray *dataArray;
@end
@implementation ThirdViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.frame = CGRectMake(0, 100, self.view.frame.size.width, 20);
[btn setTitle:@"JSON-FOUNDATION" forState:UIControlStateNormal];
[btn setBackgroundColor:[UIColor colorWithRed:1.000 green:0.283 blue:0.866 alpha:1.000]];
[btn addTarget:self action:@selector(Btn) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
}
-(void)Btn{
//第一步: 获取文件路径
NSString *path = [[NSBundle mainBundle] pathForResource:@"JSON" ofType:@"txt"];
//第二步: 创建数据对象
NSData *data = [NSData dataWithContentsOfFile:path];
* //第三步: 解析数据
//参数一: 放入数据对象源(NSData对象)
//参数二: NSJSONReadingMutableContainers : 表示解析完成后返回置为NSMutableArray
//NSJSONReadingMutableLeaves : 表示解析完成后返回值为: NSMutableString
//NSJSONReadingAllowFragments : 在不确定JSON数据最外层是数组还是字典的情况下.
NSArray *array= [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
//第四步: 初始化数据源数组
self.dataArray = [NSMutableArray array];
//第五步: 遍历数组, 放入字典
for (NSDictionary *dic in array) {
//1. 初始化model类
Student *stu = [Student new];
//2. 使用KVC赋值
[stu setValuesForKeysWithDictionary:dic];
//3. 将赋值后的model类, 放入数据源数组
[self.dataArray addObject:stu];
}
for (Student *stu in self.dataArray) {
NSLog(@"%@", stu);
}
}
@end```
***
>#####第二种: JSONKit解析(使用第三方工具)
网址下载:JSONKit工具 https://pan.baidu.com/s/1qX7JiLe
```code
#pram mark 由于JSONKit是用MRC编写的, 如果工程需要在ARC下运行(混编), 则需要修该第三方的编译器, 具体配置, 在文章结束处
#import "ForthViewController.h"
#import "JSONKit.h"
@interface ForthViewController ()
//初始化数据源数组(初始化同上)
@property (strong, nonatomic) NSMutableArray *dataArray;
@end
@implementation ForthViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.frame = CGRectMake(0, 100, self.view.frame.size.width, 20);
[btn setTitle:@"JSON-KIT" forState:UIControlStateNormal];
[btn setBackgroundColor:[UIColor colorWithRed:1.000 green:0.283 blue:0.866 alpha:1.000]];
[btn addTarget:self action:@selector(Btn) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
}
-(void)Btn{
//第一步: 获取文件路径
NSString *path = [[NSBundle mainBundle] pathForResource:@"JSON" ofType:@"txt"];
//第二步: 创建NSData对象
NSData *data = [NSData dataWithContentsOfFile:path];
//第三步: 获取数据, 使用JSONKit中的
NSArray *array = [data objectFromJSONData];
//第四步: 初始化数据源数组
self.dataArray = [NSMutableArray array];
//遍历赋值
for (NSDictionary *dic in array) {
//初始化model类
Student *stu = [Student new];
//KVC赋值
[stu setValuesForKeysWithDictionary:dic];
//将model放入数据源数组
[self.dataArray addObject:stu];
}
for (Student *stu in self.dataArray) {
NSLog(@"%@", stu);
}
}
@end```
![4F2D2148-D199-45BD-A8E7-F7C02E9C7678.png](http://upload-images.jianshu.io/upload_images/1803308-4078792622fc5709.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)