web-dev-qa-db-fra.com

Comment analyser JSON sous Android?

Comment analyser un flux JSON sous Android?

113
iamlukeyb

Android a tous les outils dont vous avez besoin pour analyser json intégré. L'exemple suit, pas besoin de GSON ou de quelque chose comme ça.

Obtenez votre JSON:

Supposons que vous avez une chaîne json

String result = "{\"someKey\":\"someValue\"}";

Créez un JSONObject :

JSONObject jObject = new JSONObject(result);

Si votre chaîne json est un tableau, par exemple:

String result = "[{\"someKey\":\"someValue\"}]"

alors vous devriez utiliser JSONArray comme démontré ci-dessous et non pas JSONObject

Pour obtenir une chaîne spécifique

String aJsonString = jObject.getString("STRINGNAME");

Pour obtenir un booléen spécifique

boolean aJsonBoolean = jObject.getBoolean("BOOLEANNAME");

Pour obtenir un entier spécifique

int aJsonInteger = jObject.getInt("INTEGERNAME");

Pour obtenir un long spécifique

long aJsonLong = jObject.getLong("LONGNAME");

Pour obtenir un double spécifique

double aJsonDouble = jObject.getDouble("DOUBLENAME");

Pour obtenir un objet spécifique JSONArray :

JSONArray jArray = jObject.getJSONArray("ARRAYNAME");

Pour obtenir les éléments du tableau

for (int i=0; i < jArray.length(); i++)
{
    try {
        JSONObject oneObject = jArray.getJSONObject(i);
        // Pulling items from the array
        String oneObjectsItem = oneObject.getString("STRINGNAMEinTHEarray");
        String oneObjectsItem2 = oneObject.getString("anotherSTRINGNAMEINtheARRAY");
    } catch (JSONException e) {
        // Oops
    }
}
171
bbedward
  1. Ecriture de classe JSON Parser

    public class JSONParser {
    
        static InputStream is = null;
        static JSONObject jObj = null;
        static String json = "";
    
        // constructor
        public JSONParser() {}
    
        public JSONObject getJSONFromUrl(String url) {
    
            // Making HTTP request
            try {
                // defaultHttpClient
                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(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
            return jObj;
    
        }
    }
    
  2. Analyse des données JSON
    Une fois que vous avez créé une classe d’analyseur, vous devez savoir comment utiliser cette classe. Ci-dessous, je vous explique comment analyser le JSON (pris dans cet exemple) en utilisant la classe parseur.

    2.1. Stockez tous ces noms de nœuds dans des variables: Dans les contacts, nous avons des éléments tels que nom, email, adresse, sexe et numéros de téléphone. La première chose à faire est donc de stocker tous ces noms de nœuds dans des variables. Ouvrez votre classe d'activité principale et déclarez stocker tous les noms de nœuds dans des variables statiques.

    // url to make request
    private static String url = "http://api.9Android.net/contacts";
    
    // JSON Node names
    private static final String TAG_CONTACTS = "contacts";
    private static final String TAG_ID = "id";
    private static final String TAG_NAME = "name";
    private static final String TAG_EMAIL = "email";
    private static final String TAG_ADDRESS = "address";
    private static final String TAG_GENDER = "gender";
    private static final String TAG_PHONE = "phone";
    private static final String TAG_PHONE_MOBILE = "mobile";
    private static final String TAG_PHONE_HOME = "home";
    private static final String TAG_PHONE_OFFICE = "office";
    
    // contacts JSONArray
    JSONArray contacts = null;
    

    2.2. Utilisez la classe d’analyse pour obtenir JSONObject et faire une boucle dans chaque élément json. Ci-dessous, je crée une instance de la classe JSONParser et j'utilise boucle for pour parcourir chaque élément json, puis pour stocker chaque donnée json dans une variable.

    // Creating JSON Parser instance
    JSONParser jParser = new JSONParser();
    
    // getting JSON string from URL
    JSONObject json = jParser.getJSONFromUrl(url);
    
        try {
        // Getting Array of Contacts
        contacts = json.getJSONArray(TAG_CONTACTS);
    
        // looping through All Contacts
        for(int i = 0; i < contacts.length(); i++){
            JSONObject c = contacts.getJSONObject(i);
    
            // Storing each json item in variable
            String id = c.getString(TAG_ID);
            String name = c.getString(TAG_NAME);
            String email = c.getString(TAG_EMAIL);
            String address = c.getString(TAG_ADDRESS);
            String gender = c.getString(TAG_GENDER);
    
            // Phone number is agin JSON Object
            JSONObject phone = c.getJSONObject(TAG_PHONE);
            String mobile = phone.getString(TAG_PHONE_MOBILE);
            String home = phone.getString(TAG_PHONE_HOME);
            String office = phone.getString(TAG_PHONE_OFFICE);
    
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }
    
17
www.9android.net

J'ai codé un exemple simple pour vous et annoté la source. L'exemple montre comment saisir un json en direct et analyser dans un JSONObject pour l'extraction de détail:

try{
    // Create a new HTTP Client
    DefaultHttpClient defaultClient = new DefaultHttpClient();
    // Setup the get request
    HttpGet httpGetRequest = new HttpGet("http://example.json");

    // Execute the request in the client
    HttpResponse httpResponse = defaultClient.execute(httpGetRequest);
    // Grab the response
    BufferedReader reader = new BufferedReader(new InputStreamReader(httpResponse.getEntity().getContent(), "UTF-8"));
    String json = reader.readLine();

    // Instantiate a JSON object from the request response
    JSONObject jsonObject = new JSONObject(json);

} catch(Exception e){
    // In your production code handle any errors and catch the individual exceptions
    e.printStackTrace();
}

Une fois que vous avez votre JSONObject, reportez-vous à SDK pour savoir comment extraire les données dont vous avez besoin.

11
Ljdawson