Cómo acceder al elemento de JSON?

Ostap:
 @Override
    protected void onPostExecute(String response) {
        String firstName = null;
        String lastName = null;
        try {
            JSONObject jsonResponse = new JSONObject(response);
            JSONArray jsonArray = jsonResponse.getJSONArray("");
            JSONObject userInfo = jsonArray.getJSONObject(0);

            firstName = userInfo.getString("id");
            lastName = userInfo.getString("id");

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

Tengo este archivo JSON https://api.myjson.com/bins/1a5t7w cómo puedo acceso a thats valores, he utilizado este código pero doesn `t trabajo? Devuelve null @ @

gyosida:
// since you know is an array, create a JSONArray based on your response String    
JSONArray array = JSONArray(response)
// obtain the first element of your array as a JSONObject
JSONObject jsonObject = array.getJSONObject(0)
// once you get the jsonObject you can start getting the values you need
String id = jsonObject.getString("id")

¡Espero eso ayude!

Supongo que te gusta

Origin http://10.200.1.11:23101/article/api/json?id=378639&siteId=1
Recomendado
Clasificación