簡體   English   中英

Json在Android應用程序中解析

[英]Json parsing in an Android application

我是Json解析的新手。 我正在從我的URL接收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顯示它。

試試這個(未測試):

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");
}

我已經解決了問題。 實際上,Json字符串具有雙重Json Array,然后具有Json Object。

我在將Json Array的對象發送給Json Object時犯了一個錯誤。 現在,我制作了一個Json Array1對象,然后將其發送到Json Array2,然后在Json Object發送了Json Array2 Json Object

代碼如下:

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;

            }

        }

您應該將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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM