| Author |
How to print the elements of an arraylist that contains a hashmap
|
Ayan Biswas
Ranch Hand
Joined: Jul 10, 2010
Posts: 95
|
|
|
I have ArrayList<HashMap>.the HashMap stores(String,Integer) as (key ,value) pair.how will I display all the elements of the arraylist.
|
AyanBiswas
|
 |
Claudiu Chelemen
Ranch Hand
Joined: Mar 25, 2011
Posts: 65
|
|
Hi Ayan.
If you simply use a System.out.println() on the list, it displays quite nice.
In case you need some kind of formatted output, please detail.
Cheers,
Claudiu
|
 |
Harsha Smith
Ranch Hand
Joined: Jul 18, 2011
Posts: 287
|
|
|
|
 |
Ayan Biswas
Ranch Hand
Joined: Jul 10, 2010
Posts: 95
|
|
Sorry,for not being precise with my query.
Actually,I need to access each (KEY,VALUE) pair from each hashmap and then do some updation on the elements of each hashmap and then display it.
|
 |
Mohamed Sanaulla
Bartender
Joined: Sep 08, 2007
Posts: 2927
|
|
Ayan Biswas wrote:
Sorry,for not being precise with my query.
Actually,I need to access each (KEY,VALUE) pair from each hashmap and then do some updation on the elements of each hashmap and then display it.
You would have to iterate through the list- you can use Enhanced for loop. so you get HashMap instances on each iteration, use it to get the key-value pairs.
So if you can convert this into code, we would be able to help you further
|
Mohamed Sanaulla | My Blog
|
 |
 |
|
|
subject: How to print the elements of an arraylist that contains a hashmap
|
|
|