{"Suggestions":[{"Itinerary_1":[{"Cities":"Madurai - Pazhamudir Cholai (Madurai) - Pillayarpatti - Chennai","Citieids":"14-85-114-2","Kms":595}],"Itinerary_2":[{"Cities":"Madurai - Pillayarpatti - Pillayarpatti - Chennai","Citieids":"14-114-114-2","Kms":560}],"Itinerary_3":[{"Cities":"Madurai - Pillayarpatti - Pillayarpatti - Chennai","Citieids":"14-114-114-2","Kms":560}]}]}
This my json response.This json have a inner array how can i get the value
This my code:
class itinerarydetails extends AsyncTask<String, String, String> {
/**
* Before starting background thread Show Progress Dialog
*/
boolean failure = false;
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected String doInBackground(String... args) {
// TODO Auto-generated method stub
// Check for success tag
int success;
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("orgin", "14"));
params.add(new BasicNameValuePair("destination", "2"));
params.add(new BasicNameValuePair("orgin_date", "28/06/2017"));
params.add(new BasicNameValuePair("destination_date", "07/07/2017"));
json = jsonParser.makeHttpRequest(itineraryurl, "GET",
params);
try {
//Suggestions
jsonarray = json.getJSONArray("Suggestions");
// JSONArray list = mainObj.getJSONArray("prodCat_list");
String check;
if(jsonarray != null) {
// Toast.makeText(getApplicationCon text(), "MAIN ARRAY IS NOT EMPTY ITS HAVE A VALUE",
// Toast.LENGTH_SHORT).show();
Log.d("check","MAIN ARRAY IS NOT EMPTY ITS HAVE A VALUE");
for (int i = 0; i < jsonarray.length(); i++) {
// JSONObject elem = list.getJSONObject(i);
JSONObject object = jsonarray.getJSONObject(i);
//JSONArray prods = elem.getJSONArray("prods");
jsoninsidearray = object.getJSONArray("Itinerary_1");
if(jsoninsidearray != null) {
Log.d("check","INSIDE ARRAY IS NOT EMPTY ITS HAVE A VALUE");
for (int j = 0; j < jsoninsidearray.length(); j++) {
JSONObject innerElem = jsoninsidearray.getJSONObject(j);
if(innerElem != null) {
Log.d("check","innerElement ARRAY IS NOT EMPTY ITS HAVE A VALUE");
cityjson = innerElem.getString("Cities");
itinerary = innerElem.getString("Citieids");
totalkms = innerElem.getString("Kms");
}
else
{
Log.d("check","innerElement ARRAY IS EMPTY");
}
}
}
else
{
Toast.makeText(getApplicationContext(), "INSIDE ARRAY IS EMPTY",
Toast.LENGTH_SHORT).show();
Log.d("check","INSIDE ARRAY IS EMPTY");
}
}
}
else
{
Toast.makeText(getApplicationContext(), "MAIN ARRAY IS EMPTY",
Toast.LENGTH_SHORT).show();
Log.d("check","MAIN ARRAY IS EMPTY");
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
protected void onPostExecute(String file_url) {
Toast.makeText(getApplicationContext(), "hai",
Toast.LENGTH_SHORT).show();
Toast.makeText(getApplicationContext(), cityjson, Toast.LENGTH_SHORT).show();
}
}
I am Vignesh i have a doubt so pls help in this below but empty values has displayed.how can i get the values from inner array from json.