IOS--JSON資料解析成字典

來源:互聯網
上載者:User

標籤:json   資料   字典   

JSON解析成字典
  • {} –>字典

  • [] –>數組

  • “”–>字串

  • 11/11.1–>NSNumber

  • true/false –>NSNumber

  • null–>NSNull(注意:這也是一個對象)

轉換流程
  • 1.建立URL

  • 2.根據URL建立請求

  • 3.利用NSURLConnection發送請求

  • 4.解析

代碼
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];   //json轉dict    //建立串連,要請求的jSON資料    NSURL *url = [NSURL URLWithString:@"http://122.22.222.122:32812/login?username=sky5156&pwd=sky5156&type=JSON"];    //建立請求    NSURLRequest *request = [NSURLRequest requestWithURL:url];    //發送請求    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {        /**         *  重要:其實就是拿到data使用下面方法就能轉成字典         *第一個參數:data    就是要轉換的內容         *第二個參數:options是枚舉值   NSJSONReadingMutableContainers(規則的可變數組或者字典),                                    NSJSONReadingMutableLeaves (解析出可變字串.這個有問題,不用)                                    NSJSONReadingAllowFragments (非規則的字典或數組用這個)         *         */      NSMutableDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];        NSLog(@"%@",dict);    }];}@end
  • 結果展示

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

IOS--JSON資料解析成字典

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.