I am building one app in which i request one php file from server. This php file returns me one JSONArray having JSONObjects as its elements e.g.,

this

[ 
  {
    "uniqid":"h5Wtd", 
    "name":"Test_1", 
    "address":"tst", 
    "email":"ru_tst@tst.cc", 
    "mobile":"12345",
    "city":"ind"
  },
  {...},
  {...},
  ...
]

my code:

/* jArrayFavFans is the JSONArray i build from string i get from response.
   its giving me correct JSONArray */
JSONArray jArrayFavFans=new JSONArray(serverRespons);
for (int j = 0; j < jArrayFavFans.length(); j++) {
  try {
    if (jArrayFavFans.getJSONObject(j).getString("uniqid").equals(id_fav_remov)) {
      //jArrayFavFans.getJSONObject(j).remove(j); //$ I try this to remove element at the current index... But remove doesn't work here ???? $
      //int index=jArrayFavFans.getInt(j);
      Toast.makeText(getParent(), "Object to remove...!" + id_fav_remov, Toast.LENGTH_SHORT).show();
    }
  } catch (JSONException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
  }
}

How do i remove a specific element from this JSONArray? I pleased to have pointer or sample code to solve this problem.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You can use the .remove(index)

JSONArray jArrayFavFans=new JSONArray(serverRespons);
               for (int j = 0; j < jArrayFavFans.length(); j++) {
                            try {
                                 if (jArrayFavFans.getInt(j) == some condition to delete)
                                 {
                                     jArrayFavFans.remove(j);
                                 }
                                }
                            } catch (JSONException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }

                        }
link|improve this answer
@RupeshYadav It should be there. Maybe you are using an old version. – npinti Jan 11 at 14:38
Thanks for your valuable response! I try to do the same but its not giving me the remove method when i do -> (jArrayFavFans. ?) It will perfectly doing well when i am removing any element from any JSONObject of this JSONArray e.g., this-> jArrayFavFans.getJSONObject(j).remove("name"); it will remove name from JSONObject at given index... My doubt is still there that how do i remove one JSONObject present at index j ...??? – Rupesh Yadav Jan 11 at 14:39
@RupeshYadav: According to their API you just need to call .remove. Did you try writing .remove(j) directly? Maybe your IDE is malfuctioning. – npinti Jan 11 at 14:43
yes, i try this but it still not working... The method remove(int) is undefined for the type JSONArray this the error i get when i do jArrayFavFans.remove(j); – Rupesh Yadav Jan 11 at 14:48
Hmm I see. If that is the case, I suggest you use their forum or from where you downloaded it. – npinti Jan 11 at 15:12
show 2 more comments
feedback

Try this code

ArrayList<String> list = new ArrayList<String>();     
JSONArray jsonArray = (JSONArray)jsonObject; 
int len = jsonArray.length();
if (jsonArray != null) { 
   for (int i=0;i<len;i++){ 
    list.add(jsonArray.get(i).toString());
   } 
}
//Remove the element from arraylist
list.remove(position);
//Recreate JSON Array
JSONArray jsArray = new JSONArray(list);

Edit: Using ArrayList will add "\" to the key and values. So, use JSONArray itself

JSONArray list = new JSONArray();     
JSONArray jsonArray = new JSONArray(jsonstring); 
int len = jsonArray.length();
if (jsonArray != null) { 
   for (int i=0;i<len;i++)
   { 
       //Excluding the item at position
        if (i != position) 
        {
            list.put(jsonArray.get(i));
        }
   } 
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.