im retrieving the Array of JSON data and trying to diplay and access it.But when i tried to display it it only displays the last row from the array of JSON data.And when i tried to do something like json1.get(2)(json1 here is JSONArray containing JSONObject) i get array out of bound error. Please tell me what im doing wrong and how can i retrive the JSON Below is the relevant code to this question.
Thank You.
im calling getAllFreebies function of UserFunctions.java class from Freebies.java class
UserFunctions uf = new UserFunctions();
JSONObject json = uf.getAllFreebies();
Below is the code of my getAllFreebies() function from UserFunctions.java class:
public JSONObject getAllFreebies(){
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("tag", getAllFreebies_tag));
JSONObject json = jsonParser.getJSONFromUrl(getAllFreebiesURL,params);
JSONArray json1 = new JSONArray();
json1.put(json);
try {
System.out.println(json1.get(2));
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return json;
}
Below is the code from index.php class where im calling getFreebies() function of DB_Functions.php class
else if($tag = 'getAllFreebies'){
$username = "";
$catagory = "";
$subcatagory = "";
$title = "";
$condition = "";
$description = "";
$address = "";
$city = "";
$state = "";
$country = "";
$zipcode = "";
$posted_on= "";
$getAllFreebies = $db->getFreebies($username,$catagory,$subcatagory,$title,$condition,$description,$address,$city,$state,$country,$zipcode,$posted_on);
$data = array();
while($row = mysql_fetch_assoc($getAllFreebies)) {
$response["success"] = 1;
$data[] = array(
$response["getAllFreebies"]["username"] = $row["username"],
$response["getAllFreebies"]["catagory"] = $row["catagory"],
$response["getAllFreebies"]["subcatagory"] = $row["subcatagory"],
$response["getAllFreebies"]["title"] = $row["title"],
$response["getAllFreebies"]["item_condition"] = $row["item_condition"],
$response["getAllFreebies"]["description"] = $row["description"],
$response["getAllFreebies"]["address"] = $row["address"],
$response["getAllFreebies"]["city"] = $row["city"],
$response["getAllFreebies"]["state"] = $row["state"],
$response["getAllFreebies"]["country"] = $row["country"],
$response["getAllFreebies"]["zipcode"] = $row["zipcode"],
$response["getAllFreebies"]["posted_on"] = $row["posted_on"]);}
echo json_encode($response);
}// end of getAllFreebies tag
Below is the code of getFreebies() function of DB_Functions.php
public function getFreebies(){
$result = mysql_query("SELECT * FROM freebie") or die(mysql_error());
return($result);
}
UPDATE:I added the following in my JSONParser class in order to parse JSONArray public JSONArray getJSONArrayFromUrl(String url, List params) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
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();
Log.e("JSON", json);
} 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);
jarray.put(jObj);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON String
return jarray;
}
And I changed getAllFreebie() to retrieve JSONArray
public JSONArray getAllFreebies() {
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("tag", getAllFreebies_tag));
JSONArray json = jsonParser.getJSONArrayFromUrl(getAllFreebiesURL,
params);
return json;
}
Still im only getting single row instead of all the rows.Can anyone pls tell me what am i doing wrong.Thanks :(