Pobierz obiekt JSON z odpowiedzi HTTP

80

Chcę uzyskać JSONobiekt z odpowiedzi Http Get:

Oto mój aktualny kod dla HTTP get:

protected String doInBackground(String... params) {

    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet(params[0]);
    HttpResponse response;
    String result = null;
    try {
        response = client.execute(request);         
        HttpEntity entity = response.getEntity();

        if (entity != null) {

            // A Simple JSON Response Read
            InputStream instream = entity.getContent();
            result = convertStreamToString(instream);
            // now you have the string representation of the HTML request
            System.out.println("RESPONSE: " + result);
            instream.close();
            if (response.getStatusLine().getStatusCode() == 200) {
                netState.setLogginDone(true);
            }

        }
        // Headers
        org.apache.http.Header[] headers = response.getAllHeaders();
        for (int i = 0; i < headers.length; i++) {
            System.out.println(headers[i]);
        }
    } catch (ClientProtocolException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    return result;
}

Oto funkcja convertSteamToString:

private static String convertStreamToString(InputStream is) {

    BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    StringBuilder sb = new StringBuilder();

    String line = null;
    try {
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            is.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return sb.toString();
}

W tej chwili otrzymuję obiekt typu string. Jak mogę odzyskać obiekt JSON.

Zapnologica
źródło
1
co otrzymujesz w swoim ciągu wynikowym?
R4chi7,
i dlaczego używasz response.getEntity () dwa razy?
R4chi7
Aby odzyskać obiekt JSON, czy serwer WWW, z którym się łączysz, ma odesłać JSON ua? Czy to robi?
rockstar
@Zapnologica sprawdź moją odpowiedź. Zobacz także odpowiedź agen451
rockstar

Odpowiedzi:

67

Otrzymany ciąg to po prostu obiekt JSON.toString (). Oznacza to, że otrzymujesz obiekt JSON, ale w formacie String.

Jeśli masz otrzymać obiekt JSON, możesz po prostu wstawić:

JSONObject myObject = new JSONObject(result);
Renan Bandeira
źródło
A co jeśli w przypadku HttpExchange ..?
Hema,
@Renan Bandeira Próbuję twój kod, aby przekonwertować moją odpowiedź http na obiekt json i otrzymuję ten błąd Error:(47, 50) java: incompatible types: java.lang.StringBuffer cannot be converted to java.util.Map
Christos Karapapas
@Karapapas Czy możesz pokazać swój kod? Moja odpowiedź była w 2013 roku. Poleciłbym użyć czegoś jako Retrofit i Gson / Jackson do obsługi żądań i serializacji Json.
Renan Bandeira
jak mogę zrobić to samo przypisanie w C #?
Farrukh Sarmad
10

Zrób to, aby uzyskać JSON

String json = EntityUtils.toString(response.getEntity());

Więcej szczegółów tutaj: pobierz json z HttpResponse

gwiazda rocka
źródło
33
to jest ciąg, a nie JSON!
Francisco Corrales Morales
6
Dlaczego to ma tak wiele pozytywnych głosów? To tylko toString()funkcja - w zasadzie dokładnie to samo, co robi OP.
cst1992
Przynajmniej pozwala to pozbyć się wielu niskopoziomowych kodów ogólnych OP. Zobacz post @Catalin Pirvu poniżej, aby uzyskać bardziej kompletne rozwiązanie.
Cesar
9

To nie jest dokładna odpowiedź na twoje pytanie, ale może ci to pomóc

public class JsonParser {

    private static DefaultHttpClient httpClient = ConnectionManager.getClient();

    public static List<Club> getNearestClubs(double lat, double lon) {
        // YOUR URL GOES HERE
        String getUrl = Constants.BASE_URL + String.format("getClosestClubs?lat=%f&lon=%f", lat, lon);

        List<Club> ret = new ArrayList<Club>();

        HttpResponse response = null;
        HttpGet getMethod = new HttpGet(getUrl);
        try {
            response = httpClient.execute(getMethod);

            // CONVERT RESPONSE TO STRING
            String result = EntityUtils.toString(response.getEntity());

            // CONVERT RESPONSE STRING TO JSON ARRAY
            JSONArray ja = new JSONArray(result);

            // ITERATE THROUGH AND RETRIEVE CLUB FIELDS
            int n = ja.length();
            for (int i = 0; i < n; i++) {
                // GET INDIVIDUAL JSON OBJECT FROM JSON ARRAY
                JSONObject jo = ja.getJSONObject(i);

                // RETRIEVE EACH JSON OBJECT'S FIELDS
                long id = jo.getLong("id");
                String name = jo.getString("name");
                String address = jo.getString("address");
                String country = jo.getString("country");
                String zip = jo.getString("zip");
                double clat = jo.getDouble("lat");
                double clon = jo.getDouble("lon");
                String url = jo.getString("url");
                String number = jo.getString("number");

                // CONVERT DATA FIELDS TO CLUB OBJECT
                Club c = new Club(id, name, address, country, zip, clat, clon, url, number);
                ret.add(c);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

        // RETURN LIST OF CLUBS
        return ret;
    }

}
Again, it’s relatively straight forward, but the methods I’ll make special note of are:

JSONArray ja = new JSONArray(result);
JSONObject jo = ja.getJSONObject(i);
long id = jo.getLong("id");
String name = jo.getString("name");
double clat = jo.getDouble("lat");
Hybrydowy programista
źródło
8

Bez przyjrzenia się dokładnemu wynikowi JSON ciężko jest podać działający kod. Ten samouczek jest bardzo przydatny, ale możesz użyć czegoś podobnego do:

JSONObject jsonObj = new JSONObject("yourJsonString");

Następnie możesz pobrać z tego obiektu json za pomocą:

String value = jsonObj.getString("yourKey");
Joe Birch
źródło
1
Bardzo fajny tutorial. „Ogólnie wszystkie węzły JSON będą rozpoczynać się od nawiasu kwadratowego lub nawiasu klamrowego. Różnica między [a {to, że nawias kwadratowy ([) oznacza początek węzła JSONArray, a nawias klamrowy ({) - JSONObject). uzyskując dostęp do tych węzłów, musimy wywołać odpowiednią metodę dostępu do danych. Jeśli twój węzeł JSON zaczyna się od [, to powinniśmy użyć metody getJSONArray (). Tak samo, jak gdyby węzeł zaczynał się od {, powinniśmy użyć metody getJSONObject (). "
kolejny
3

Musisz użyć JSONObjectjak poniżej:

String mJsonString = downloadFileFromInternet(urls[0]);

JSONObject jObject = null;
try {
    jObject = new JSONObject(mJsonString);
} 
catch (JSONException e) {
    e.printStackTrace();
    return false;
}

...

private String downloadFileFromInternet(String url)
{
    if(url == null /*|| url.isEmpty() == true*/)
        new IllegalArgumentException("url is empty/null");
    StringBuilder sb = new StringBuilder();
    InputStream inStream = null;
    try
    {
        url = urlEncode(url);
        URL link = new URL(url);
        inStream = link.openStream();
        int i;
        int total = 0;
        byte[] buffer = new byte[8 * 1024];
        while((i=inStream.read(buffer)) != -1)
        {
            if(total >= (1024 * 1024))
            {
                return "";
            }
            total += i;
            sb.append(new String(buffer,0,i));
        }
    }
    catch(Exception e )
    {
        e.printStackTrace();
        return null;
    }catch(OutOfMemoryError e)
    {
        e.printStackTrace();
        return null;
    }
    return sb.toString();
}

private String urlEncode(String url)
{
    if(url == null /*|| url.isEmpty() == true*/)
        return null;
    url = url.replace("[","");
    url = url.replace("]","");
    url = url.replaceAll(" ","%20");
    return url;
}

Mam nadzieję, że to ci pomoże ...

Sushil
źródło
Cześć Apnologica .. gdyby którakolwiek z odpowiedzi zaspokoiła Twoje potrzeby, zaakceptuj ją, aby inni mogli łatwo dotrzeć do poprawnej odpowiedzi. dzięki
Sushil
2

W trosce o kompletne rozwiązanie tego problemu (tak, wiem, że ten post umarł dawno temu ...):

Jeśli chcesz JSONObject, to najpierw zdobądź Stringz result:

String jsonString = EntityUtils.toString(response.getEntity());

Wtedy możesz otrzymać JSONObject:

JSONObject jsonObject = new JSONObject(jsonString);
Catalin Pirvu
źródło