Json在Android应用程序中解析

时间:2014-11-05 13:48:54

标签: android json parsing

我是Json解析的新手。我从我的网址收到Json数据,如下所示:

[
    [
        {
            "message": "hdjcjcjjckckckckvkckckck",
            "timetoken": 14151866297757284
        },
        {
            "message": "ufjfjfjcjfjchfjdhwjroritkgjcj",
            "timetoken": 14151869212145692
        },
        {
            "message": "udjfjfudjcyshdhsnfkfkvkf",
            "timetoken": 14151869317015766
        },
        {
            "message": "lvkifjsywjfwhsjvjdjfudjgidufkg",
            "timetoken": 14151869404695072
        },
        {
            "message": "ifjfydncydhsxhshfjdjejtlfudj",
            "timetoken": 14151869494732788
        },
        {
            "message": "22637485969473849506&#&#*%-&+",
            "timetoken": 14151869589393336
        },
        {
            "message": "jcjfjdueywjfusufig",
            "timetoken": 14151869671994892
        },
        {
            "message": "ofkdiriflfkkkfkdiidk",
            "timetoken": 14151869775170644
        },
        {
            "message": "testing",
            "timetoken": 14151869895179728
        },
        {
            "message": 1234567,
            "timetoken": 14151869986900556
        },
        {
            "message": 9877653,
            "timetoken": 14151870106439620
        },
        {
            "message": "zxcvbnmmkljgdaqerip",
            "timetoken": 14151870236042386
        }
    ],
    14151866297757284,
    14151870236042386
]

我使用它来将JsonArray数据分解为不同的索引,就像我想在我的活动中的不同行中显示消息和timetoken一样,如下所示:

message: hdjcjcjjckckckckvkckckck
time token: 14151866297757284
message: 22637485969473849506&#&#*%-&+
time token: 14151869212145693

我应该在以下代码行中做些什么:

JSONArray jsonObj = new JSONArray(message.toString());  //message.toString() is the Json Response data
for (int i = 0; i < jsonObj.length(); i++) {

}

我希望如上所述在我的Textview中显示它。

3 个答案:

答案 0 :(得分:1)

试试这个(未经测试):

JSONArray jsonObj = new JSONArray(message.toString());  //message.toString() is the Json Response data
JSONArray array =  jsonObj.getJSONArray(0);
for (int i = 0; i < array.length(); i++) {
  JSONObject item = array.getJSONObject(i);
  String mesage = item.getJsonString("message");
  String timespan = item.getJsonString("timespan");
}

答案 1 :(得分:1)

我已经解决了这个问题。实际上Json字符串有两个Json数组,然后是Json Object。

我错误地将Json Array的对象发送到Json Object。现在我创建了Json Array1的对象,然后将其发送到Json Array2,然后在Json Object中发送Json Array2的对象。

代码如下:

try {

        JSONArray jsonObj = new JSONArray(message.toString()); 
        JSONArray jArray = new JSONArray(jsonObj.get(0).toString());
                                for (int i = 0; i < jArray.length(); i++) {

        JSONObject c = jArray.getJSONObject(i);

        String messageString=c.getString("message");
        String timeString=c.getString("timetoken");
        String abc = timeString;

            }

        }

答案 2 :(得分:1)

你应该把json解析放到try-catch块中:

try{
    JSONArray res = new JSONArray(response.toString());
    JSONArray jsonArray = res.getJSONArray(0);
    for(int i = 0; i < jsonArray.length(); i++){
        JSONObject object = jsonArray.getJSONObject(i);
        String message = object.getString("message");
        String token = object.getString("timetoken");
    }
}catch(Exception e){
    e.printStackTrace();
}

你有一个双数组,所以你有两个JSONArray。实际上,JSONArray通常标有[]和JSONObject标记为{}。

换句话说,{} = JSONObject[] = JSONArray