Search code examples
androidjsonjsonobjectrequest

How to implement Nested JsonObject /JsonArrey in One Json Value?


I have a Json Format Json Url

http://inter.youdao.com/intersearch?tag=simple-eh&from=en&to=hi&q=spin

I need only first i

first i - n. घुमाव; चक्रण; झुकाव

second i. v. घूमना; कातना

Is it possible that first i + second i word only first word = n. घुमाव, v. घूमना

The problem was showing result in android no eh velue. How to get hindi word.

Json Result

{
"data": {
"eh": {
"": "spɪn",
"ukphone": "spɪn",
"ukspeech": "spin&type=1",
"trs": [
{
"i": "n. घुमाव; चक्रण; झुकाव"
},
{
"i": "v. घूमना; कातना"
}
],

Android Implement :

    JsonObjectRequest jsonObjReq = new JsonObjectRequest(Method.GET,
                    urlJsonObj, null, new Response.Listener<JSONObject>() { @Override
                        public void onResponse(JSONObject response) {
                            Log.d(TAG, response.toString());
                             try {
                                // Parsing json object response
                                // response will be a json object
                            JSONObject result = response.getJSONObject("data");
                                String eh= result.getString("eh");
                                JSONObject result1 = response.getJSONObject("eh");
                                String hindi= result1.getString("trs");
                                jsonResponse = "";
                                jsonResponse += "Hindi: " + hindi ;
                                txtResponse.setText(jsonResponse);
} catch (JSONException e) {
                            e.printStackTrace();
                            Toast.makeText(getApplicationContext(),
                                    "Error: " + e.getMessage(),
                                    Toast.LENGTH_LONG).show();
                        }
                        hidepDialog();
                    }
                }, new Response.ErrorListener() {

                    @Override
                    public void onErrorResponse(VolleyError error) {
                        VolleyLog.d(TAG, "Error: " + error.getMessage());
                        Toast.makeText(getApplicationContext(),
                                error.getMessage(), Toast.LENGTH_SHORT).show();
                        // hide the progress dialog
                        hidepDialog();
                    }
                });

        // Adding request to request queue
        AppController.getInstance().addToRequestQueue(jsonObjReq);
    }

Solution

  • finally fix the Problem

    Thanks here is code :

    try {
                            // Parsing json object response
                            // response will be a json object
                            String syncresponse = response.getString("data");
                            JSONObject object2 = new JSONObject(syncresponse);
                            String synckey = object2.getString("eh");
                            JSONObject object3 = new JSONObject(synckey);
                            JSONArray jArray1 = object3.getJSONArray("trs");
    
                            for(int i = 0; i < jArray1 .length(); i++)
                            {
                                JSONObject object4 = jArray1.getJSONObject(i);
                                String comp_id = object4.getString("i");
                                String replace = object4.getString( "i" ).replace( ";", "," );
    
                                translate.setText(mWord + "=" + comp_id);
                            }