I have ArrayList, from which I want to remove an element which has particular value...
for eg.
ArrayList a=new ArrayList
Use a iterator to loop through list and then delete the required object.
Iterator itr = a.iterator(); while(itr.hasNext()){ if(itr.next().equals("acbd")) itr.remove(); }