I am searching through solr. it gives me response in json. like following:
 {response
 {numfound:# , docs{
  [
   {
    id="#"
    model="#"
   }
   {
    id="#"
    model="#"
   }
  ]
  }
  }
I want to extract just the ids from this and make java array list from them.
Can someone please tell me how i can do that in coding language?
question: how to just extract id from son string and convert then into java array list if i am using hashmap or objectmapper in java?
thanx
 
     
     
     
    