2016-12-14 81 views
-4
**https://wpsvc5.com/ESAWebAPI/DwgData/018/1821%20Cedar%20Pkwy/Floor%201_BGD.json 

這是我的json文件,我想獲取索引(2)的數組值。我得到的json字符串作爲一個完整的json文件數據字符串,但是當我轉換成json對象時,它只顯示第一個索引數據。我需要所有數據作爲對象。我是json解析的新手。 **json字符串不能轉換成json對象

package com.example.swetha.myapplication; 

import android.util.Log; 

import org.apache.http.HttpEntity; 
import org.apache.http.HttpResponse; 
import org.apache.http.client.ClientProtocolException; 
import org.apache.http.client.methods.HttpGet; 
import org.apache.http.impl.client.DefaultHttpClient; 
import org.json.JSONException; 
import org.json.JSONObject; 

import java.io.BufferedReader; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.InputStreamReader; 
import java.io.UnsupportedEncodingException; 


/** 
* Created by swetha on 12/13/2016. 
*/ 

public class JSONParser { 

    static InputStream is = null; 
    static JSONObject jObj = null; 
    static String json = ""; 

    // constructor 
    public JSONParser() { 

    } 

    public JSONObject getJSONFromUrl(String url) throws JSONException { 

     // Making HTTP request 
     try { 
      // defaultHttpClient 
      DefaultHttpClient httpClient = new DefaultHttpClient(); 
      //HttpPost httpPost = new HttpPost(url); 
      HttpGet httpPost = new HttpGet(url); 

      HttpResponse httpResponse = httpClient.execute(httpPost); 
      HttpEntity httpEntity = httpResponse.getEntity(); 
      is = httpEntity.getContent(); 

     } catch (UnsupportedEncodingException e) { 
      e.printStackTrace(); 
     } catch (ClientProtocolException e) { 
      e.printStackTrace(); 
     } catch (IOException e) { 
      e.printStackTrace(); 
     } 

     try { 
      BufferedReader reader = new BufferedReader(new InputStreamReader(
        is, "iso-8859-1"), 8); 
      StringBuilder sb = new StringBuilder(); 
      String line = null; 
      while ((line = reader.readLine()) != null) { 
       sb.append(line+"\n"); 
      } 
      is.close(); 
      json = sb.toString(); 
     } catch (Exception e) { 
      Log.e("Buffer Error", "Error converting result " + e.toString()); 
     } 

     // try parse the string to a JSON object 
     try { 
      jObj = new JSONObject(json); 
     } catch (JSONException e) { 
      Log.e("JSON Parser", "Error parsing data " + e.toString()); 
     } 

     // return JSON String 
    /* try { 
      //jObj= new JSONObject(json.substring(json.indexOf("{"), json.lastIndexOf("]")+1));//IndexOf("}") +1)); 
      //jObj = new JSONArray(json).getJSONObject(1); 
     // json = json.replace("\\\"","'"); 
      // jObj = new JSONObject(json.substring(1,json.length())); 
     } catch (JSONException e) { 
      e.printStackTrace(); 
     }*/ 
     // return new JSONObject(json.substring(json.indexOf("{"), json.lastIndexOf("}") + 1)); 
     return jObj; 
    } 
} 
+1

你從json得到什麼迴應?你可以表演嗎? –

+0

while this jObj = new JSONObject(json.substring(json.indexOf(「{」),json.lastIndexOf(「}」)+ 1));「我得到「{」MinX「:0,」MaxX「:5150.5,」MinY「:0,」MaxY「:2662.5,」ProjectCode「:」018「}」這是一個輸出。而當我只使用「jObj = new JSONObject(json);」我收到異常,價值不能轉換爲一個對象。 – Shweta

回答

-2

json =」{\「Data \」:「+ json +」}「;

jObj = new JSONObject(json);

我剛剛concatinated我這樣的json字符串,它適用於我。

1

下面是一個例子如何使用它

String json = "Assuming that here is your JSON response"; 
try { 
    JSONObject parentObject = new JSONObject(json); 
    JSONObject userDetails = parentObject.getJSONObject("user_details"); 

    //And then read attributes like    
    String name = userDetails.getString("user_name"); 
    String phone = userDetails.getString("user_phone"); 
    String id = userDetails.getString("re‌​f_id"); 

} catch (JSONException e) { 
    e.printStackTrace(); 
} 

上面的代碼是用於

{ 「user_details」:`{ 「user_ID的」: 「1」,」 user_name「:」chand「,」user_phone「:」9620085675「,」re f_id「:6386}}

1

Shweta,

你得到JSONArray響應和你的努力是JsonArray到的JSONObject這是不對的。

JSONArray jsonArray=new JSONArray(json); 

其次,你已經回答了你的問題,像這樣的JSON格式附加,這是不正確的,但工程。

json = "{\"Data\":" + json + "}"; 
jObj = new JSONObject(json); 

確保您使用的JSONArray和解析data.And一個建議,從URL獲取的數據是非常巨大的,它可能會停止,因爲大數據的應用程序,通過獲取只有10一個JSONObjects使用分頁每個請求將會提高應用程序的性能。

+0

謝謝nithin,但我必須一次獲取所有數據..需要我的應用程序。還有什麼我們可以做的嗎? – Shweta

+0

嘗試這些參考,這將爲你工作。[link1](https://medium.com/@etiennelawlor/pagination-with-recyclerview-1cb7e66a502b#.75myrenpe)[link2](https://github.com/MarkoMilos/分頁)。這個過程在提供的教程中實現。 – Nithin

+1

其實nithin這是繪製數據...所有像線條,弧形,圓圈,文本和更..所以不能做分頁。 – Shweta