web-dev-qa-db-fra.com

Obtention de la valeur de chaîne à partir d'un objet Json Android

Je suis débutant sur Android. Dans mon projet, j'obtiens le json suivant de la réponse HTTP.

[{"Date":"2012-1-4T00:00:00",
"keywords":null,
"NeededString":"this is the sample string I am needed for my project",
"others":"not needed"}]

Je veux obtenir le "NeededString" du json ci-dessus. Comment l'obtenir?

28
Dray

Cela pourrait vous aider.

Java:

JSONArray arr = new JSONArray(result);
JSONObject jObj = arr.getJSONObject(0);
String date = jObj.getString("NeededString");

Kotlin:

val jsonArray = JSONArray(result)
val jsonObject: JSONObject = jsonArray.getJSONObject(0)
val date= jsonObject.get("NeededString")
65
nisha.113a5

Vous avez juste besoin d'obtenir le JSONArray et d'itérer le JSONObject à l'intérieur du tableau en utilisant une boucle bien que dans votre cas ce soit un seul JSONObject mais vous pouvez en avoir plus.

JSONArray mArray;
        try {
            mArray = new JSONArray(responseString);
             for (int i = 0; i < mArray.length(); i++) {
                    JSONObject mJsonObject = mArray.getJSONObject(i);
                    Log.d("OutPut", mJsonObject.getString("NeededString"));
                }
        } catch (JSONException e) {
            e.printStackTrace();
        }
10
Lalit Poptani

Comprendre org.json.jsonobject dans votre projet.

Vous pouvez alors faire ceci:

JSONObject jresponse = new JSONObject(responseString);
responseString = jresponse.getString("NeededString");

En supposant que responseString contient la réponse que vous recevez.

Si vous avez besoin de savoir comment convertir la réponse reçue en une chaîne, voici comment procéder:

ByteArrayOutputStream out = new ByteArrayOutputStream();
response.getEntity().writeTo(out);
out.close();
String responseString = out.toString();
4
xbonez

Vous pouvez utiliser getString

String name = jsonObject.getString("name");
// it will throws exception if the key you specify doesn't exist

ou optString

String name = jsonObject.optString("name");
// it will returns the empty string ("") if the key you specify doesn't exist
3
Phan Van Linh

Voici le code, pour obtenir l'élément de ResponseEntity

try {
            final ResponseEntity<String> responseEntity = restTemplate.exchange(API_URL, HttpMethod.POST, entity, String.class);
            log.info("responseEntity"+responseEntity);
            final JSONObject jsonObject ; 
            if (responseEntity.getStatusCode() == HttpStatus.CREATED) {
                try {
                    jsonObject = new JSONObject(responseEntity.getBody());
                    final String strName = jsonObject.getString("name");
                    log.info("name:"+strName);
                } catch (JSONException e) {
                    throw new RuntimeException("JSONException occurred");
                }
            }
        }catch (HttpStatusCodeException exception) {
            int statusCode = exception.getStatusCode().value();
            log.info("statusCode:"+statusCode);
        }
1
Nadhu

Si vous pouvez utiliser la bibliothèque JSONObject , vous pouvez simplement

    JSONArray ja = new JSONArray("[{\"Date\":\"2012-1-4T00:00:00\",\"keywords\":null,\"NeededString\":\"this is the sample string I am needed for my project\",\"others\":\"not needed\"}]");
    String result = ja.getJSONObject(0).getString("NeededString");
1
Nishant

Voici la solution que j'ai utilisée pour moi fonctionne pour récupérer JSON à partir d'une chaîne

protected String getJSONFromString(String stringJSONArray) throws JSONException {
        return new StringBuffer(
               new JSONArray(stringJSONArray).getJSONObject(0).getString("cartype"))
                   .append(" ")
                   .append(
               new JSONArray(employeeID).getJSONObject(0).getString("model"))
              .toString();
    }
0
android.dk

je pense que cela vous est utile

                JSONArray jre = objJson.getJSONArray("Result");

                for (int j = 0; j < jre.length(); j++) {
                    JSONObject jobject = jre.getJSONObject(j);

                    String  date = jobject.getString("Date");
                    String  keywords=jobject.getString("keywords");
                    String  needed=jobject.getString("NeededString");

                }
0
Nilesh mayatra