Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following ArrayList

ArrayList<HashMap<String, String>> list;
HashMap<String, String> map;

with the following values inside:

list[0] = map.put("key_0", value_0);
list[1] = map.put("key_1", value_1);
list[2] = map.put("key_2", value_2);

I would like to parse the list array and get the value of the key at a specific position.

share|improve this question

1 Answer

up vote 3 down vote accepted

You can get the particular map from the ArrayList> by using get() method. for example,

map = list.get(index);

And to get key of that map, you can do:

String key = map.get("key");

FYI, this is the feasible solution, i dont know why you are using key name like key_0, key_1, key_2...and so on.

share|improve this answer
You're right. The key_names are all the same for each list item. Initially I meant writing it this way: list[0] = map("key_0", value_0, "key_1", value_1 etc. ) – Andrei Stalbe Jun 25 '12 at 13:02
1  
@AndreiStalbe Cheers !! One more tip: You should improve your accept rate. – Paresh Mayani Jun 25 '12 at 13:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.