Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to parse this json and get the itemvotecounts, and firstrankvotescounts.

[
    [
        {
            "itm_id": "22",
            "itm_nam": "movie1",
            "user_id": "8",
            "overall": [
                {
                    "itm_id": "23",
                    "itm_nam": "movie2",
                    "firstrankvotecounts": "27",
                    "overallrank": 1,
                    "overalltotalitems": 16,
                    "overallmaxrank": "16"
                }
            ],
            "itemoverallrank": "2",
            "itemvotecounts": "23",
            "particularcategory": [
                {
                    "itm_id": "23",
                    "itm_nam": "movie2",
                    "firstrankvotecounts": "27",
                    "particularcategoryrank": 1,
                    "particularcategorytotalitems": 12,
                    "categorymaxrank": "12"
                }
            ],
            "itemparticularcategoryrank": "2"
        }
    ],
    [
        {
            "itm_id": "42",
            "itm_nam": "How to train your dragon",
            "user_id": "8",
            "overall": [
                {
                    "itm_id": "23",
                    "itm_nam": "movie2",
                    "firstrankvotecounts": "27",
                    "overallrank": 1,
                    "overalltotalitems": 16,
                    "overallmaxrank": "16"
                }
            ],
            "itemoverallrank": "9",
            "itemvotecounts": "5",
            "particularcategory": [
                {
                    "itm_id": "23",
                    "itm_nam": "movie2",
                    "firstrankvotecounts": "27",
                    "particularcategoryrank": 1,
                    "particularcategorytotalitems": 12,
                    "categorymaxrank": "12"
                }
            ],
            "itemparticularcategoryrank": "8"
        }
    ]
]

I used the following code.

try {  
JSONArray jsonArray = new JSONArray("the json");
Log.v("Number of entries ",Integer.toString(jsonArray.length()));
                for (int i = 1; i < jsonArray.length(); i++) {
                    JSONObject jsonObject = jsonArray.getJSONObject(i);
                    String itm_vote = jsonObject.getString("itemvotecounts");
                    Log.v("item vote count ",itm_vote);     
                }} catch (JSONException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

and get the following error.

03-22 23:05:01.067: W/System.err(389): org.json.JSONException: JSONArray[1] is not a JSONObject.
03-22 23:05:01.077: W/System.err(389):  at org.json.JSONArray.getJSONObject(JSONArray.java:268)
03-22 23:05:01.077: W/System.err(389):  at com.http.post.HttpPostCheckActivity$responseCheck.doInBackground(HttpPostCheckActivity.java:90)
03-22 23:05:01.077: W/System.err(389):  at com.http.post.HttpPostCheckActivity$responseCheck.doInBackground(HttpPostCheckActivity.java:1)
03-22 23:05:01.087: W/System.err(389):  at android.os.AsyncTask$2.call(AsyncTask.java:185)
03-22 23:05:01.087: W/System.err(389):  at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:256)
03-22 23:05:01.087: W/System.err(389):  at java.util.concurrent.FutureTask.run(FutureTask.java:122)
03-22 23:05:01.097: W/System.err(389):  at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:648)
03-22 23:05:01.097: W/System.err(389):  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:673)
03-22 23:05:01.097: W/System.err(389):  at java.lang.Thread.run(Thread.java:1060)
share|improve this question
"the json" doesn't seem a JSON array... – Raffaele Mar 22 '12 at 17:50
I don't know about JSON but is for (int i = 1; i < jsonArray.length(); i++) correct? It looks unusual. – Alex Mar 22 '12 at 17:52

1 Answer

up vote 0 down vote accepted

in your json string...The json object is at second level of json array.

JSONArray jsonArray = new JSONArray("your_json_string");

for (int i = 0; i < jsonArray.length(); i++) {
    JSONArray jsonArrayInner = jsonArray.getJSONArray[i];
    JSONObject jsonObject = jsonArrayInner.getJSONObject(0);
    String itm_vote = jsonObject.getString("itemvotecounts");
    Log.v("item vote count ",itm_vote);     
}

This would be appropriate code as per your json..

share|improve this answer
thanks for your response. It works. – Manikandan Mar 22 '12 at 18:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.