Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just wondering what that error could mean? I get it from the following code..

 try{
    JSONArray jArray = new JSONArray(result);
    for(int i=0;i<jArray.length();i++){
            JSONObject json_data = jArray.getJSONObject(i);
            Log.i("log_tag","id: "+json_data.getInt("id")+
                    ", name: "+json_data.getString("name")+
                    ", sex: "+json_data.getInt("sex")+
                    ", birthyear: "+json_data.getInt("birthyear")
            );
    }
}
}catch(JSONException e){
    Log.e("log_tag", "Error parsing data "+e.toString());
}
share|improve this question
Could you tell us the actual line of code of the exception? – Andreas_D Jun 21 '10 at 15:10

2 Answers

up vote 3 down vote accepted

Result is null, apparently. Or it simply does not start with [. Print it out before calling JSONArray to see.

Also take a look at the JSONArray source. It is expecting JavaScript array syntax, e.g.:

['this', 'is', 'array', 'syntax']

share|improve this answer

text.trim(); text.trim();

Text is the json file or string , do this at least two times one after another will resolve the problem 99.9%.

share|improve this answer

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.