在java中访问json字符串并创建hashmap Android

时间:2014-10-13 13:34:54

标签: java android json hashmap

我有一个JSON字符串,我正在尝试从中检索信息。 Json String看起来像这样。

JSON STRING:

{
    "information": {
        "device": {
            "id": 0
        },
        "user": {
            "id": 0
        },
        "data": [
            {
                "datum": {
                    "id": "00GF001",
                    "history_id": "9992BH",
                    "name": "abc",
                    "marks": 57,
                    "class": "B",
                    "type": "Student"
                }
            },
            {
                "datum": {
                    "id": "72BA9585",
                    "history_id": "78NAH2",
                    "name": "ndnmanet",
                    "marks": 70,
                    "class": "B",
                    "type": "Student"
                }
            },
            {
                "datum": {
                    "id": "69AHH85",
                    "history_id": "NN00E3006",
                    "name": "kit",
                    "department": "EF003",
                    "class": "A",
                    "type": "Employee"
                }
            },
            {
                "datum": {
                    "id": "09HL543",
                    "history_id": "34QWFTA",
                    "name": "jeff",
                    "department": "BH004",
                    "class": "A1",
                    "type": "Employee_HR"
                }
            }
        ]
    }
}

我正在尝试从中访问数据JSONArray和相应的Datum。我根据学生,员工等类型区分每个数据,并在hashmap中推送信息。 我成功地在javascript中完成了它,但在Java中我很努力。

当我尝试访问JSONArray时,它会抛出异常

 try {
            JSONObject data = new JSONObject(dataInfo);
           // Log.d(TAG, "CHECK"+data.toString());
         JSONObject info = data.optJSONObject("information");
            if(info.getJSONArray("data").getString(0).equals("Student") > 0)  //exception here

                Log.d(TAG, "Data"+ data.getJSONArray("data").length()); //exception here too
            for(int m = 0; m < data.length(); m++){
                //   for(int s = 0; s < data[m].ge)
            }
        } catch (JSONException j){
            j.printStackTrace();
        }

任何指针都可以创建相应类型的hashmap。理解

2 个答案:

答案 0 :(得分:0)

如果dataInfo是您发布的json,那么您必须访问信息并从信息中获取数据:

 JSONObject data = new JSONObject(dataInfo);
 JSONObject info = data.optJSONObject("information");
 if (info != null) {
    JSONArray dataArray = info.optJSONArray("data")
 }

答案 1 :(得分:0)

如果您尝试访问type对象的datum字段,则您需要以下内容:

JSONObject data = new JSONObject(dataInfo); // get the entire JSON into an object
JSONObject info = data.getJSONObject("information"); // get the 'information' object
JSONArray dataArray = info.getJSONArray("data"); // get the 'data' array

for (int i = 0; i < dataArray.length(); i++) {
    // foreach element in the 'data' array
    JSONObject dataObj = dataArray.getJSONObject(i); // get the object from the array
    JSONObject datum = dataObj.getJSONObject("datum"); // get the 'datum' object
    String type = datum.getString("type"); // get the 'type' string

    if ("Student".equals(type)) {
        // do your processing for 'Student' here
    }
}

请注意,您必须处理异常处理,错误数据等。此代码仅向您展示了如何获取您正在寻找的数据的基础知识。我将每个单独的步骤分成了自己的代码行,以便我可以清楚地评论每个步骤中发生的事情,但如果对您来说更容易,您可以将一些步骤组合成一行代码。