1

jArray と、その jArray からの文字列 "message2" があります。

[{"date":"2012","count":"1","message" : "message1"}, {"date":"2011","count":"2","message":"message2"}}

どの JSONObject "message2" から来たかを特定し、そのメッセージに関連する "count" を特定するにはどうすればよいですか?

擬似コード:

x = count of jArray element that contains the string "message2"
4

1 に答える 1

0

JSONArray がソートされていない場合、これが基本的なアプローチです。

try {
    //JSONArray jArray = new JSONArray();
    JSONObject item;
    boolean found = false;
    int length = jArray.length();
    String key = "message";
    String orphan = "message2"; // Let's find where you belong

    for(int index = 0; index < length; index++) {
        item = jArray.getJSONObject(index);
        if(item.getString(key).equals(orphan)) {
            found = true;
            break;
        }
    }

    if(found) {
        // item references the JSONObject that you want
    }
    else {
        // No match found
    }
}
catch(JSONException e) {
    // Try to handle the error gracefully
}
于 2012-06-17T03:44:01.983 に答える