Hi guys
I am facing issue in an array list where i am putting a value at specified index, but it is replacing all the index value in it.
I am putting map inside a arraylist, now in a loop when i am putting value in list.add(i, Map).The value at i as well as all the values in the list gets replace by current value in Map.
So at last i am getting a list containg same map(with the last map value) at all the index.
Please help