I'm developing an app in android. I have to build an API in PHP which serves the following JSON
[{"id":"1","number":"2"},{"id":"3","number":"4"},{"id":"5","number":"6"},{"id":"7","number":"8"}]
I am completing the part of the connection in php(web server) with httpClient, and saving it to string.
Now I want to save it in a local collection (I use hashmap!!!don;t know if this is the best!!!!any suggestion is welcome).Because my jsonobject defined of array i want declare the following : HashMap<Integer, LinkedHashMap<String, String>> hashmap;
General idea was to save in integer an index,and in LinkedHashMap<String, String> every jsonobject. a instance of hashmap i want to be something :
hashmap[0] = {"id":"1","number":"2"}
hashmap[1] = {"id":"3","number":"4"}
hashmap[2] = {"id":"5","number":"6"}
The code that fail:
JSONObject tempjson;
hashmap = new HashMap<Integer, LinkedHashMap<String,String>>();
LinkedHashMap<String, String> linkedmap = new LinkedHashMap<String, String>();
for(int i=0;i<jsonarray.length();i++)
{
JSONObject tempjsonobject = jsonarray.getJSONObject(i);
linkedmap.put("id", tempjsonobject.getString("id"));
linkedmap.put("number", tempjsonobject.getString("id"));
hashmap.put(i, linkedmap);
}
Linkedhashmap has always the last entry --> "id":"7","number":"8"
But if i do the declaration of LinkedHashMap<String, String> linkedmap = new LinkedHashMap<String, String>(); inside of for loop it works.
Can explain me anyone why this is happens?