iOS開發(fā)中常見的網絡數(shù)據(jù)解析

本人就iOS開發(fā)中常見的網絡數(shù)據(jù)解析方式以及使用情況做了匯總带污,希望閱讀者能夠從中受益.....
為了便于分析忠售,本人就直接搞了一個新聞接口 通過解析并輸出其中數(shù)據(jù)來確保操作正確性他爸,好了 閑話不多說了,咱們就直接進入正題黄虱。

一、準備操作

首先我們修改工程的Info.plist文件 //xcode 7 之后若想要使用HTTP 需要修改info.plist文件 這一點大家看圖就會明白



繼而


@interface ViewController ()<NSURLConnectionDataDelegate>//三個代理這里選中DataDelegate
@property(nonatomic,strong)NSMutableArray *dataArray;//存放解析完成數(shù)據(jù)的數(shù)組
//定以一個可變data 數(shù)據(jù)
@property(nonatomic,strong)NSMutableData *tempData;
@end



//新聞接口
#define BASE_URL @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213"
//將上面的字符串分段為以 ? 為分界線分為兩部分
#define URL_POST1 @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx"
#define URL_POST2 @"date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213"

//懶加載初始化數(shù)組
-(NSMutableArray *)dataArray{
   if (_dataArray == nil) {
       _dataArray  =[NSMutableArray array];
   }
   return _dataArray;
}

二蹬癌、網絡數(shù)據(jù)解析方式和用法

1、Get同步解析
- (IBAction)getTongbu:(UIButton *)sender {
    NSLog(@"=============Get同步");
    //創(chuàng)建url對象
    NSURL *url = [NSURL URLWithString:BASE_URL];
    //創(chuàng)建請求對象
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    //設置請求方式 這一步可以不寫 默認設置為get請求
    [request setHTTPMethod:@"get"];
    //創(chuàng)建相應對象
    NSURLResponse *response = nil;
    NSError *error;
    //創(chuàng)建連接對象
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
//    NSLog(@"%@",dict);
    NSArray *array =dict[@"news"];
    for (NSDictionary *dic in array) {
        NewsModel *model =[NewsModel new];
        [model setValuesForKeysWithDictionary:dic];
        [self.dataArray addObject:model];
    }
    for (NewsModel *model in _dataArray) {
        NSLog(@"%@",model);
    }
}
2虹茶、Post同步解析
- (IBAction)postTongbu:(UIButton *)sender {
    NSLog(@"=============Post同步");
    //創(chuàng)建url對象
    NSURL *url = [NSURL URLWithString:URL_POST1];
    //創(chuàng)建請求對象
    NSMutableURLRequest *request =[NSMutableURLRequest requestWithURL:url];
    
//設置請求方式
    [request setHTTPMethod:@"post"];//get可以進行省略 但是post不能省略
    //設置請求參數(shù)
    NSData *tempData =[URL_POST2 dataUsingEncoding:NSUTF8StringEncoding];
    [request setHTTPBody:tempData];
    //創(chuàng)建響應對象
    NSURLResponse *responde = nil;
    //創(chuàng)建連接對象
    NSError *error;
    NSData *data  = [NSURLConnection sendSynchronousRequest:request returningResponse: &responde error:&error];
    NSDictionary *dict =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
    NSArray *arary =dict[@"news"];
    for (NSDictionary *dic in arary) {
        NewsModel *model =[NewsModel new];
        [model setValuesForKeysWithDictionary:dic];
        [self.dataArray addObject:model];
    }
    for (NewsModel *model in _dataArray) {
        NSLog(@"%@",model);
    }
}
3逝薪、Get異步Block
- (IBAction)getYiBlock:(id)sender {
    NSLog(@"=============Get異步Block");
    NSURL *url =[NSURL URLWithString:BASE_URL];
    NSMutableURLRequest *request =[NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"get"];
    
    __weak typeof(self)temp = self;
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
        NSError *error;
        NSDictionary *dict =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
        NSArray *array =dict[@"news"];
        for (NSDictionary *dic in array) {
            NewsModel *model = [NewsModel new];
            [model setValuesForKeysWithDictionary:dic];
            [temp.dataArray addObject:model];
        }
        for (NewsModel *model in temp.dataArray) {
            NSLog(@"%@",model);
        }
    }];
}
4、Post異步Block
- (IBAction)postYoBlock:(id)sender {
    NSLog(@"=============Post異步Block同步");
    NSURL *url = [NSURL URLWithString:URL_POST1];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    NSURLResponse *responde = nil;
    [request setHTTPMethod:@"post"];
    NSData *tempData = [URL_POST2 dataUsingEncoding:NSUTF8StringEncoding];
    [request setHTTPBody:tempData];
    __weak typeof(self)temp =self;
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
        NSError *error;
        NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
        NSArray *array = dict[@"news"];
        for (NSDictionary *dic in array) {
            NewsModel *model =[NewsModel new];
            [model setValuesForKeysWithDictionary:dic];
            [temp.dataArray addObject:model];
        }
        for (NewsModel *model in temp.dataArray) {
            NSLog(@"%@",model);
        }
    }];
}

除以上之外蝴罪,還有Get的Delegate方式請求和Post的Delegate方式請求董济,這兩種方式都需要遵守 NSURLConnectionDataDelegate協(xié)議,并實現(xiàn)協(xié)議里面的幾個方法才能進行數(shù)據(jù)操作的實現(xiàn) 要门,以下兩種方式的實現(xiàn)都是在此基礎上進行的

5虏肾、Get異步Delegate
- (IBAction)getYiDelegate:(UIButton *)sender {
    NSLog(@"Get異步請求代理");
    //創(chuàng)建url對象
    NSURL *url =[NSURL URLWithString:BASE_URL];
    
    //創(chuàng)建請求對象
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    
    //創(chuàng)建連接對象并實現(xiàn)代理
    NSURLConnection *connection =[NSURLConnection connectionWithRequest:request delegate:self];
    
    //開始執(zhí)行
    [connection start];
}
6、Post異步Delegate
- (IBAction)postYiDelegate:(id)sender {
    NSLog(@"Post異步請求代理");
    NSURL *url  =[NSURL URLWithString:URL_POST1];
    
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"post"];
    
    NSData *tempData =[URL_POST2 dataUsingEncoding:NSUTF8StringEncoding];
    [request setHTTPBody:tempData];
    
    NSURLConnection *connection =[NSURLConnection connectionWithRequest:request delegate:self];
    [connection start];
}

NSURLConnectionDataDelegate方法的實現(xiàn)

//接收到服務器響應的時候出發(fā)的方法
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
    //準備數(shù)據(jù)接收 先進行數(shù)據(jù)初始化
    self.tempData =[NSMutableData data];
}
//接收請求的數(shù)據(jù)
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
    //將每次接收到的數(shù)據(jù)拼接到原有數(shù)據(jù)包的后面
    [_tempData appendData:data];
}
//數(shù)據(jù)加載完畢 開始解析
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
    NSError *error;
    NSDictionary *dict =[NSJSONSerialization JSONObjectWithData:_tempData options:NSJSONReadingAllowFragments error:&error];
    NSArray *array =dict[@"news"];
    for (NSDictionary *dic in array) {
        NewsModel *model =[NewsModel new];

        [model setValuesForKeysWithDictionary:dic];
        [self.dataArray addObject:model];
    }
    for (NewsModel *model in _dataArray) {
        NSLog(@"%@",model);
    }
}
//打印失敗信息
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{
    NSLog(@"文件連接出現(xiàn)了error = %@",error);
}

7欢搜、Get Session異步請求
- (IBAction)getSession:(UIButton *)sender {
//準備url對象
    NSURL *url =[NSURL URLWithString:BASE_URL]封豪;
    //創(chuàng)建session對象
    NSURLSession *session =[NSURLSession sharedSession];
    __weak typeof(self)temp =self;
    //創(chuàng)建task(該方法內部默認使用get)直接進行傳遞url即可
    NSURLSessionDataTask *dataTask =[session dataTaskWithURL:url completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        
         temp.dataArray = [NSMutableArray arrayWithCapacity:1];
        //數(shù)據(jù)操作
        NSDictionary *dic =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
        NSArray *array =dic[@"news"];
        for (NSDictionary *dict in array) {
            NewsModel *model = [NewsModel new];
            [model setValuesForKeysWithDictionary:dict];
            [temp.dataArray addObject:model];
        }
    }];
    //數(shù)據(jù)操作
    [dataTask resume];
    for (NewsModel *model in _dataArray) {
        NSLog(@"%@",model);
    }
}
8、Post Session異步請求
- (IBAction)postSession:(UIButton *)sender {
    NSLog(@"postSession-異步請求");
    //創(chuàng)建URL對象
    NSURL *url =[NSURL URLWithString:URL_POST1];
    //創(chuàng)建請求對象
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"post"];
    NSData *tempdata = [URL_POST2 dataUsingEncoding:NSUTF8StringEncoding];
    [request setHTTPBody:tempdata];
    // 3 建立會話 session支持三種類型的任務
    
    //    NSURLSessionDataTask  //加載數(shù)據(jù)
    //    NSURLSessionDownloadTask  //下載
    //    NSURLSessionUploadTask   //上傳
    NSURLSession *session =[NSURLSession sharedSession];
//    NSLog(@"%d",[[NSThread currentThread] isMainThread]);
    
    __weak typeof(self)temp = self;
    
    NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        //解析
        _dataArray = [NSMutableArray arrayWithCapacity:1];
        NSDictionary *dic =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
        NSArray *array =dic[@"news"];
        for (NSDictionary *dict in array) {
            NewsModel *model = [NewsModel new];
            [model setValuesForKeysWithDictionary:dict];
            [_dataArray addObject:model];
        }
//        NSLog(@"%@",dic);
//        NSLog(@"%d----",[[NSThread currentThread] isMainThread]);
        //回到主線程 刷新數(shù)據(jù) 要是刷新就在這里面
        dispatch_async(dispatch_get_main_queue(), ^{
//            [temp.tableView reloadData];
            for (NewsModel *model in _dataArray) {
                NSLog(@"%@",model);
            }
        });
    }];
    //啟動任務
    [dataTask resume];
}

好了炒瘟,以上就是這篇文章的所有內容吹埠,筆者在此表示感謝~~~~~

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市疮装,隨后出現(xiàn)的幾起案子缘琅,更是在濱河造成了極大的恐慌,老刑警劉巖廓推,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件刷袍,死亡現(xiàn)場離奇詭異,居然都是意外死亡樊展,警方通過查閱死者的電腦和手機做个,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來滚局,“玉大人居暖,你說我怎么就攤上這事√僦” “怎么了太闺?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長嘁圈。 經常有香客問我省骂,道長蟀淮,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任钞澳,我火速辦了婚禮怠惶,結果婚禮上,老公的妹妹穿的比我還像新娘轧粟。我一直安慰自己策治,他們只是感情好,可當我...
    茶點故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布兰吟。 她就那樣靜靜地躺著通惫,像睡著了一般。 火紅的嫁衣襯著肌膚如雪混蔼。 梳的紋絲不亂的頭發(fā)上履腋,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天,我揣著相機與錄音惭嚣,去河邊找鬼遵湖。 笑死,一個胖子當著我的面吹牛晚吞,可吹牛的內容都是我干的延旧。 我是一名探鬼主播,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼载矿,長吁一口氣:“原來是場噩夢啊……” “哼垄潮!你這毒婦竟也來了?” 一聲冷哼從身側響起闷盔,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤弯洗,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后逢勾,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體牡整,經...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年溺拱,在試婚紗的時候發(fā)現(xiàn)自己被綠了逃贝。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,646評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡迫摔,死狀恐怖沐扳,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情句占,我是刑警寧澤沪摄,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響杨拐,放射性物質發(fā)生泄漏祈餐。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一哄陶、第九天 我趴在偏房一處隱蔽的房頂上張望帆阳。 院中可真熱鬧,春花似錦屋吨、人聲如沸蜒谤。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽芭逝。三九已至塌碌,卻和暖如春渊胸,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背台妆。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工翎猛, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人接剩。 一個月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓切厘,卻偏偏與公主長得像,于是被迫代替她去往敵國和親懊缺。 傳聞我的和親對象是個殘疾皇子疫稿,可洞房花燭夜當晚...
    茶點故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內容

  • Spring Cloud為開發(fā)人員提供了快速構建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務發(fā)現(xiàn)鹃两,斷路器遗座,智...
    卡卡羅2017閱讀 134,633評論 18 139
  • iOS開發(fā)系列--網絡開發(fā) 概覽 大部分應用程序都或多或少會牽扯到網絡開發(fā),例如說新浪微博俊扳、微信等途蒋,這些應用本身可...
    lichengjin閱讀 3,644評論 2 7
  • iOS網絡編程讀書筆記 Facade Tester客戶端門面模式的實例(被動版本化) 被動版本化,所以硬編碼URL...
    melouverrr閱讀 1,602評論 3 7
  • 218.241.181.202 wxhl60 123456 192.168.10.253 wxhl66 wxhl6...
    CYC666閱讀 1,369評論 0 6
  • 網絡 http請求方式馋记? 通常号坡,HTTP的請求方式有3種,分別是:POST梯醒、GET宽堆、HEAD。POST和GET方法...
    b485c88ab697閱讀 7,220評論 1 36