2011-12-23 48 views
0

我试图解析从PHP接收到的JSONArray。我从我的日志猫看到,我得到的值是[[“84.0918544152744”],[“84.0918544152744”]],但是当我去解析数组中的元素时,我得到一个NullPointerException。这里是我的代码:从Java检索JSONArray(Android)

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

这里是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 [email protected] 
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 
+0

为什么使用br.readLine创建对象? – gwa 2011-12-23 01:34:34

+0

br.readline发送一个应该能够格式化为JSON数组或JSON对象的数组。将这个数组传递给对象本身应该是正确的?我可能会误解。 – 2011-12-23 01:43:12

回答

0

的BufferedReader BR =新BufferedRe .. Log.i(LOG_TAG, “BR值是” + br.readLine( ));

在这里,你所走的线路缓冲,所以当你来到这里:

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

你不再有一个字符串。

尝试删除此行Log.i(LOG_TAG,“br value is”+ br.readLine());

祝你好运!

+0

这是问题所在。谢谢!我不知道这是真的。 – 2011-12-23 12:31:03