I have a list of type object as follows,
List<object> recordList
which will contain database record(integer,string) as follows,
[[1,AAAAAAAA],[2,BBBBBB]]
I need to split the data in the list and put into
Hashmap<Integer,String> as follows,
I do knw how to split the data form the object list and poplualte the hashmap. How to populate the Hashmap with the data from list?
1,AAAAAAAAa single attribute or two different ?