新浪微博數據Json格式解析

Json格式解析

 

json結構的格式就是若干個 鍵/值(key, value) 對的集合,該集合能夠理解爲字典(Dictionary),每一個 鍵/值 對能夠理解成一個對象(Object)。 鍵/值 對中的 鍵(key) 通常是 一個string,值(value)能夠是string、double、int等基本類型,也能夠嵌套一個 鍵/值 對,也能夠是一個數組,數組裏面的數據的類型能夠是基本類型,或者 鍵/值 對。能夠看出 鍵/值 原本沒什麼,只是嵌套得多了就會以爲混亂,下面舉個具體的例子來講明。注:該代碼只是用來舉例說明,並不能正確運行。html

複製代碼  

 1             var testJson = {                      
2                             "Name" :      "奧巴馬" ,
3                             "ByName" :    ["小奧","小巴","小馬"],
4                             "Education" : {
5                                            "GradeSchool" :  "華盛頓第一小學",
6                                            "MiddleSchool" : ["華盛頓第一初中" , "華盛頓第一高中"],
7                                            "University" :  {
8                                                               "Name" : "哈佛大學",
9                                                               "Specialty" : ["軟件工程","會計"]
10                                                             }
11                                       }
12                         }

 

複製代碼  

變量testJson就是一個json對象,testJson對象包括三個 鍵/值 對。web

第一個 鍵/值 對: 鍵(key)是"Name「 ,其對應的值(value)是 "奧巴馬" ,即 testJson["Name"]  == "奧巴馬"json

第二個 鍵/值 對: 鍵 是 "ByName" ,值是一個數組,是一個string集合。有必要的話,數組裏面的元素也能夠是 鍵/值 對。數組

第三個 鍵/值 對: 鍵 是 "Education",值是一個 Json對像,該json對象包括三個 鍵/值 對,這就是嵌套了。dom

總結:json對象就是若干個 鍵/值 對的集合,鍵是string,值能夠是基本類型,或者嵌套一個Json對象,或者是一個數組(數組裏的元素能夠是基本類型,也能夠是json對象,能夠繼續嵌套)。post

獲取名字:testJson["Name"]網站

獲取第一個別名:testJson["ByName"][0] 。testJson的 鍵"ByName" 對應的值 是一個string數組 url

獲取小學名字: testJson["Education"]["GradeSchool"] , 獲取大學主修專業:testJson["Education"]["University"]["Specialty"][0]spa

 

下面舉個實例:.net

定義一個符合json格式要求的字符串:

string testJson = "{\"Name\" : \"奧巴馬\",\"ByName\" : [\"小奧\",\"小巴\",\"小馬\"],\"Education\":{\"GradeSchool\" : \"華盛頓第一小學\",\"MiddleSchool\" : [\"華盛頓第一初中\" , \"華盛頓第一高中\"], \"University\" :{ \"Name\" : \"哈佛大學\", \"Specialty\" : [\"軟件工程\",\"會計\"]}}}";

 

而後須要用該字符串做爲參數new 一個 JsonObject對象。微軟自帶的類庫 System.Json ,而後添加命名空間 using System.Json;

主要代碼就一句:JsonObject js = JsonObject.Parse(testJson); 用字符串testJson 做爲參數new 一個 JsonObject 對象。經過監視咱們能夠看到js裏面的內容和預料的同樣,經過下面這幅圖你應該可琢磨出不少東西來吧

 

在作這個以前我對JSON解析瞭解的不是不少,只能對一些簡單的數據解析,對於稍微複雜一點的結構就束手無策了,在網上找了不少資料也沒能解決

後來看了這個帖子,終於稍微摸到了一點門道:http://hi.baidu.com/iiloveloveyouyou/blog/item/cec41b1d5ccdf48087d6b68e.html/cmtid/465fd0f12cea96cc7931aa9a


首先先看一下新浪微博目前的JSON的結構

[html]    view plain       copy       print       ?  

  1. {  

  2.     "statuses": [  

  3.         {  //位置1  

  4.             "created_at": "Tue May 31 17:46:55 +0800 2011",  // 位置2  

  5.             "id": 11488058246,  

  6.             "text": "求關注。",  

  7.             "source": "<a href="http://weibo.com" rel="nofollow">新浪微博</a>",  

  8.             "favorited": false,  

  9.             "truncated": false,  

  10.             "in_reply_to_status_id": "",  

  11.             "in_reply_to_user_id": "",  

  12.             "in_reply_to_screen_name": "",  

  13.             "geo": null,  

  14.             "mid": "5612814510546515491",  

  15.             "reposts_count": 8,  

  16.             "comments_count": 9,  

  17.             "annotations": [],  

  18.             "user": {  //位置3  

  19.                 "id": 1404376560,  

  20.                 "screen_name": "zaku",  

  21.                 "name": "zaku",  

  22.                 "province": "11",  

  23.                 "city": "5",  

  24.                 "location": "北京 朝陽區",  

  25.                 "description": "人生五十年,乃如夢如幻;有生斯有死,壯士復何憾。",  

  26.                 "url": "http://blog.sina.com.cn/zaku",  

  27.                 "profile_image_url": "http://tp1.sinaimg.cn/1404376560/50/0/1",  

  28.                 "domain": "zaku",  

  29.                 "gender": "m",  

  30.                 "followers_count": 1204,  

  31.                 "friends_count": 447,  

  32.                 "statuses_count": 2908,  

  33.                 "favourites_count": 0,  

  34.                 "created_at": "Fri Aug 28 00:00:00 +0800 2009",  

  35.                 "following": false,  

  36.                 "allow_all_act_msg": false,  

  37.                 "remark": "",  

  38.                 "geo_enabled": true,  

  39.                 "verified": false,  

  40.                 "allow_all_comment": true,  

  41.                 "avatar_large": "http://tp1.sinaimg.cn/1404376560/180/0/1",  

  42.                 "verified_reason": "",  

  43.                 "follow_me": false,  

  44.                 "online_status": 0,  

  45.                 "bi_followers_count": 215  

  46.             }  

  47.         },  

  48.         ...  

  49.     ],  

  50.     "previous_cursor": 0,  // 位置4  

  51.     "next_cursor": 11488013766,  

  52.     "total_number": 81655  

  53. }  

{
    "statuses": [
        {  //位置1
            "created_at": "Tue May 31 17:46:55 +0800 2011",  // 位置2
            "id": 11488058246,
            "text": "求關注。",
            "source": "<a href="http://weibo.com" 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": {  //位置3
                "id": 1404376560,
                "screen_name": "zaku",
                "name": "zaku",
                "province": "11",
                "city": "5",
                "location": "北京 朝陽區",
                "description": "人生五十年,乃如夢如幻;有生斯有死,壯士復何憾。",
                "url": "http://blog.sina.com.cn/zaku",
                "profile_image_url": "http://tp1.sinaimg.cn/1404376560/50/0/1",
                "domain": "zaku",
                "gender": "m",
                "followers_count": 1204,
                "friends_count": 447,
                "statuses_count": 2908,
                "favourites_count": 0,
                "created_at": "Fri Aug 28 00:00:00 +0800 2009",
                "following": false,
                "allow_all_act_msg": false,
                "remark": "",
                "geo_enabled": true,
                "verified": false,
                "allow_all_comment": true,
                "avatar_large": "http://tp1.sinaimg.cn/1404376560/180/0/1",
                "verified_reason": "",
                "follow_me": false,
                "online_status": 0,
                "bi_followers_count": 215
            }
        },
        ...
    ],
    "previous_cursor": 0,  // 位置4
    "next_cursor": 11488013766,
    "total_number": 81655
}

#筆記#這裏孫億要提一下,使用新浪SDK得到的json字符串和官方網站上略有不一樣,不用第三方開源包獲取到的Json數據是沒有statuses的並且第一個字符是[ ],這裏注意一下就行,以官方接口爲主,多是接口方法把前面的去掉了。


將上面的數據簡化一下就是下面的結構,K表明key,V表明value

[html]    view plain       copy       print       ?  

  1. {  

  2.     K : [     

  3.             {  // 位置1  

  4.                 K : V ,  // 位置2  

  5.                 K : { K : V }  // 位置3  

  6.             },  

  7.             {  // 位置1  

  8.                 K : V ,  // 位置2  

  9.                 K : { K : V }  // 位置3  

  10.             },  

  11.             ......  

  12.         ],  

  13.     K : V    // 位置4  

  14. }  

{
	K : [   
			{  // 位置1
				K : V ,  // 位置2
				K : { K : V }  // 位置3
			},
			{  // 位置1
				K : V ,  // 位置2
				K : { K : V }  // 位置3
			},
			......
		],
	K : V    // 位置4
}



好了,如今咱們開始一點一點的去解析它

首先最外面的一層大括號{ ..... },這個應該使用JSONObject()去獲取對象

[html]    view plain       copy       print       ?  

  1. JSONObject jsonObject = new JSONObject(json);   

JSONObject jsonObject = new JSONObject(json);


位置1的數據須要一個getJSONArray()方法去獲取,由於他是一個數組,[ ]之間的每個{ ..... }表明數組的一個元素

[html]    view plain       copy       print       ?  

  1. JSONArray statusesArr = jsonObject.getJSONArray("statuses");  

JSONArray statusesArr = jsonObject.getJSONArray("statuses");

此時位置1的元素須要將其轉化爲JsonObject類

此時有2種辦法能夠轉化

第一種:

[html]    view plain       copy       print       ?  

  1. JSONObject statusesObj = statusesArr.getJSONObject(0);  // 這裏的0表明的就是第一個{},以此類推  

JSONObject statusesObj = statusesArr.getJSONObject(0);  // 這裏的0表明的就是第一個{},以此類推


第二種:

[html]    view plain       copy       print       ?  

  1. String statusesStr = statusesArr.getString(0);  

  2. JSONObject statusesObj = new JSONObject(statusesStr);  

String statusesStr = statusesArr.getString(0);
JSONObject statusesObj = new JSONObject(statusesStr);


這個時候咱們就能夠獲取位置2的數據了

[html]    view plain       copy       print       ?  

  1. statusesObj.getString("created_at");  

statusesObj.getString("created_at");


位置3的數據又有點比較搞了,直接貼代碼

[html]    view plain       copy       print       ?  

  1. String user = statusesObj.getString("user"); // 獲取位置3的值  

  2. JSONObject userObj = new JSONObject(user); // 將其轉化爲JSONObject  

  3. String name = userObj.getString("name"); // 使用get方法獲取數據  

String user = statusesObj.getString("user"); // 獲取位置3的值
JSONObject userObj = new JSONObject(user); // 將其轉化爲JSONObject
String name = userObj.getString("name"); // 使用get方法獲取數據


位置4的數據獲取很簡單,使用普通的get方法就能夠得到

[html]    view plain       copy       print       ?  

  1. jsonObject.getInt("total_number");  

     

Java解析Json

 

包支持:org.json.jar

第一個:

String js = "{'a':'111','b':'333','c':'666'}";
   try {
    JSONObject jsonObject01 = new JSONObject(js);
    String a = jsonObject01.getString("a");
    String b = jsonObject01.getString("b");
    String c = jsonObject01.getString("c");
   
    System.out.println(a+b+c);
   } catch (JSONException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
   }
  

第二個:

String json = "{'name': '呵呵','array':[{'a':'111','b':'222','c':'333'},{},{'a':'999'}],'address':'上海'}";
   try {
    JSONObject jsonObject = new JSONObject(json);
    String name = jsonObject.getString("name");
    String address = jsonObject.getString("address");

    System.out.println("name is:" + name);

    System.out.println("address is:" + address);       JSONArray jsonArray = jsonObject.getJSONArray("array");       for (int i = 0; i < jsonArray.length(); i++) {     System.out.println("item " + i + " :" + jsonArray.getString(i));    }   } catch (JSONException e) {    // TODO Auto-generated catch block    e.printStackTrace();   }

相關文章
相關標籤/搜索