I'm trying to parse a JSONArray received from php. I see from my log cat that the value I get back is [["84.0918544152744"],["84.0918544152744"]] but when I go to parse the elements from the array, I get a NullPointerException. Here is my code:

 private class SetAverages extends AsyncTask<Void, Void, BufferedReader> {
         @Override
         protected BufferedReader doInBackground(Void... params) {
             String url = "...";

             Log.i(LOG_TAG, "URL = " + url);
             URL iuri;
             try {
                 iuri = new URL(url);
                 URLConnection connection = iuri.openConnection();
                 connection.setDoInput(true);
                 connection.setDoOutput(true);
                 connection.setUseCaches(false);
                 connection.setRequestProperty("Content-type",
                         "application/x-www-form-urlencoded");
                 BufferedReader br = new BufferedReader(new InputStreamReader(
                         (InputStream) connection.getContent()));
                 Log.i(LOG_TAG, "br value is " + br.readLine());
                return br;
             } catch (MalformedURLException e) {
                 // TODO Auto-generated catch block
                 e.printStackTrace();
             } catch (IOException e) {
                 // TODO Auto-generated catch block
                 e.printStackTrace();
             }
           return null;
         }

         @Override
         protected void onPostExecute(BufferedReader br) {
             if(br == null){
                 Log.v(LOG_TAG, "br from set averages is null");
                 return;
             }

             Log.v(LOG_TAG, "Get Averages onPostExecute");
             try{

                 Log.i(LOG_TAG, "br value is " + br.toString());
                 Log.i(LOG_TAG, "about to set up json array....");

                 JSONObject inputjson = new JSONObject(br.readLine());
                 //JSONArray inputjson = new JSONArray(br.readLine());
                 Log.i(LOG_TAG, "this worked....");

                 Log.i(LOG_TAG, "size of inputjson = " + inputjson.length());
                return;
            }catch(NullPointerException e){
                 Log.e(LOG_TAG, "Unable to get averages, NullPointerException");
                 e.printStackTrace();
             }catch(NumberFormatException e){
                 Log.e(LOG_TAG, "Unable to get averages, Number Format Exception");
                 e.printStackTrace();
             } catch (JSONException e) {
                 Log.e(LOG_TAG, "JSON Exception");
                 e.printStackTrace();
             } catch (IOException e) {
                 Log.e(LOG_TAG, "IO Exception");
                 e.printStackTrace();
             }

             return;
         }

Here is an excerpt from logcat:

12-22 20:07:59.345: INFO/HA(1000): br value is [["84.0158352941176"],["84.0158352941176"]]
12-22 20:07:59.355: VERBOSE/HA(1000): Get Averages onPostExecute
12-22 20:07:59.355: INFO/HA(1000): br value is java.io.BufferedReader@44f8f0c0
12-22 20:07:59.355: INFO/HA(1000): about to set up json array....
12-22 20:07:59.355: ERROR/HA(1000): Unable to get averages, NullPointerException
link|improve this question

why do you use br.readLine for creating the object? – gwa Dec 23 '11 at 1:34
br.readline sends back an Array that should be able to be formatted into a JSON array, or JSON Object. Passing this array into the object itself should be fine correct? I could be mistaken. – Johanne Smith Dec 23 '11 at 1:43
feedback

1 Answer

up vote 0 down vote accepted

BufferedReader br = new BufferedRe.. Log.i(LOG_TAG, "br value is " + br.readLine());

here you are taking the line buffer so when you got here:

              JSONObject inputjson = new JSONObject(br.readLine());

you no longer have a string.

try remove this line Log.i(LOG_TAG, "br value is " + br.readLine());

good luck!

link|improve this answer
This was the problem. Thank you! I didn't know this to be true. – Johanne Smith Dec 23 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

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