IOS開發之JSON格式資料的產生與解析,ios開發json格式

來源:互聯網
上載者:User

IOS開發之JSON格式資料的產生與解析,ios開發json格式

 本文將從四個方面對IOS開發中JSON格式資料的產生與解析進行講解:

 

一、JSON是什嗎?二、我們為什麼要用JSON格式的資料?三、如何產生JSON格式的資料?四、如何解析JSON格式的資料?

   JSON格式取代了xml給網路傳輸帶來了很大的便利,但是卻沒有了xml的一目瞭然,尤其是json資料很長的時候,我們會陷入繁瑣複雜的資料節點尋找中。這時我們就需要一款線上校正工具 BeJson。 

 

一、JSON是什嗎?

  JSON(JavaScript Object Notation) 是一種輕量級的資料交換格式。它基於ECMAScript的一個子集。 JSON採用完全獨立於語言的文字格式設定,但是也使用了類似於C語言家族的習慣(包括C、C++、C#、Java、JavaScript、Perl、Python等)。這些特性使JSON成為理想的資料交換語言。 易於人閱讀和編寫,同時也易於機器解析和產生(一般用於提升網路傳輸速率)。

JSON資料主要有兩種資料結構,一種是鍵/值,另一種是數組的形式來表示。

1、JSON 資料的書寫格式是:成對的名稱和數值。如:
{"firstName":"Brett","lastName":"McLaughlin","email":"aaaa"}

 

2、JSON 資料的書寫格式是:數組格式,當需要表示一組值時,JSON 不但能夠提高可讀性,而且可以減少複雜性。如:
{    "programmers": [{        "firstName": "Brett",        "lastName": "McLaughlin",        "email": "aaaa"    }, {        "firstName": "Elliotte",        "lastName": "Harold",        "email": "cccc"    }],    "authors": [{        "firstName": "Isaac",        "lastName": "Asimov",        "genre": "sciencefiction"    }, {        "firstName": "Frank",        "lastName": "Peretti",        "genre": "christianfiction"    }],    "musicians": [{        "firstName": "Eric",        "lastName": "Clapton",        "instrument": "guitar"    }, {        "firstName": "Sergei",        "lastName": "Rachmaninoff",        "instrument": "piano"    }]}

 

 

 

二、我們為什麼要用JSON格式的資料?

  JSON 可以將 JavaScript 對象中表示的一組資料轉換為字串,然後就可以在函數之間輕鬆地傳遞這個字串,或者在非同步應用程式中將字串從 Web 客戶機傳遞給伺服器端程式。這個字串看起來有點兒古怪,但是JavaScript很容易解釋它,而且 JSON 可以表示比"名稱 / 值對"更複雜的結構。例如,可以表示數組和複雜的對象,而不僅僅是鍵和值的簡單列表。

  JSON作為資料包格式傳輸的時候具有更高的效率,這是因為JSON不像XML那樣需要有嚴格的閉合標籤,這就讓有效資料量與總資料包比大大提升,從而減少同等資料流量的情況下,網路的傳輸壓力。

 

 三、如何產生JSON格式的資料?1、利用字典NSDictionary轉換為鍵/值格式的資料。
// 如果數組或者字典中儲存了  NSString, NSNumber, NSArray, NSDictionary, or NSNull 之外的其他對象,就不能直接儲存成檔案了.也不能序列化成 JSON 資料.    NSDictionary *dict = @{@"name" : @"me", @"do" : @"something", @"with" : @"her", @"address" : @"home"};        // 1.判斷當前對象是否能夠轉換成JSON資料.    // YES if obj can be converted to JSON data, otherwise NO    BOOL isYes = [NSJSONSerialization isValidJSONObject:dict];        if (isYes) {        NSLog(@"可以轉換");                /* JSON data for obj, or nil if an internal error occurs. The resulting data is a encoded in UTF-8.         */        NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict options:0 error:NULL];                /*         Writes the bytes in the receiver to the file specified by a given path.         YES if the operation succeeds, otherwise NO         */        // 將JSON資料寫成檔案        // 檔案添加尾碼名: 告訴別人當前檔案的類型.        // 注意: AFN是通過檔案類型來確定資料類型的!如果不添加類型,有可能識別不了! 自己最好添加檔案類型.        [jsonData writeToFile:@"/Users/SunnyBoy/Sites/JSON_XML/dict.json" atomically:YES];                NSLog(@"%@", [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]);            } else {                NSLog(@"JSON資料產生失敗,請檢查資料格式");            }

 

 2、通過JSON序列化可以轉換數組,但轉換結果不是標準化的JSON格式。
   NSArray *array = @[@"qn", @18, @"ya", @"wj"];        BOOL isYes = [NSJSONSerialization isValidJSONObject:array];        if (isYes) {        NSLog(@"可以轉換");                NSData *data = [NSJSONSerialization dataWithJSONObject:array options:0 error:NULL];                [data writeToFile:@"/Users/SunnyBoy/Sites/JSON_XML/base" atomically:YES];        } else {                NSLog(@"JSON資料產生失敗,請檢查資料格式");            }

 

 

四、如何解析JSON格式的資料?1、使用TouchJSon解析方法:(需匯入包:#import "TouchJson/JSON/CJSONDeserializer.h")
//使用TouchJson來解析北京的天氣//擷取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);//取值列印NSLog(@"%@",[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解析北京的天氣NSURL *url = [NSURL URLWithString:@"http://www.weather.com.cn/adat/sk/101010100.html"];NSError *error = nil;NSString *jsonString = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];SBJsonParser *parser = [[SBJsonParser alloc] init];NSDictionary *rootDic = [parser objectWithString:jsonString error:&error];NSDictionary *weatherInfo = [rootDic objectForKey:@"weatherinfo"];NSLog(@"%@", [NSString stringWithFormat:@"今天是 %@  %@  %@  的天氣狀況是:%@  %@ ",[weatherInfo objectForKey:@"date_y"],[weatherInfo objectForKey:@"week"],[weatherInfo objectForKey:@"city"], [weatherInfo objectForKey:@"weather1"], [weatherInfo objectForKey:@"temp1"]]);

  

3、使用IOS5內建解析類NSJSONSerialization方法解析:(無需匯入包,IOS5支援,低版本IOS不支援)
// 從中國天氣預報網請求資料    NSURL *url = [ NSURL URLWithString:@"http://www.weather.com.cn/adat/sk/101010100.html"];        // 建立請求    NSURLRequest *request = [NSURLRequest requestWithURL:url];        [[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {                // 在網路完成的 Block 回調中,要增加錯誤機制.        // 失敗機制處理: 錯誤的狀態代碼!                // 最簡單的錯誤處理機制:        if (data && !error) {                        // JSON格式轉換成字典,IOS5中內建解析類NSJSONSerialization從response中解析出資料放到字典中            id obj = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];                        NSDictionary *dict = obj[@"weatherinfo"];                        NSLog(@"%@---%@", dict, dict[@"city"]);        }            }] resume];

 

4、使用JSONKit的解析方法:(需匯入包:#import "JSONKit/JSONKit.h")
//如果json是“單層”的,即value都是字串、數字,可以使用objectFromJSONStringNSString *json1 = @"{\"a\":123, \"b\":\"abc\"}";NSLog(@"json1:%@",json1);NSDictionary *data1 = [json1 objectFromJSONString];NSLog(@"json1.a:%@",[data1 objectForKey:@"a"]);NSLog(@"json1.b:%@",[data1 objectForKey:@"b"]);//如果json有嵌套,即value裡有array、object,如果再使用objectFromJSONString,程式可能會報錯(測試結果表明:使用由網路或得到的php/json_encode產生的json時會報錯,但使用NSString定義的json字串時,解析成功),最好使用objectFromJSONStringWithParseOptions:NSString *json2 = @"{\"a\":123, \"b\":\"abc\", \"c\":[456, \"hello\"], \"d\":{\"name\":\"張三\", \"age\":\"32\"}}";NSLog(@"json2:%@", json2);NSDictionary *data2 = [json2 objectFromJSONStringWithParseOptions:JKParseOptionLooseUnicode];NSLog(@"json2.c:%@", [data2 objectForKey:@"c"]);NSLog(@"json2.d:%@", [data2 objectForKey:@"d"]);

 

 

友好提示:

4中解析方式的對比:

系統的API的解析速度最快。

SBJSON的解析速度為倒數第二差。

與系統API較為接近的是JSONKit。

在今後的開發過程中,建議選用系統的API或JSONKit來對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.