how copy the hashmap object into arraylist at java program?

Answers were Sorted based on User's Feedback



how copy the hashmap object into arraylist at java program?..

Answer / venkat

hashMap.keySet().toArray(); // returns an array of keys
hashMap.values().toArray(); // returns an array of values

Is This Answer Correct ?    15 Yes 1 No

how copy the hashmap object into arraylist at java program?..

Answer / abhinaw

HashMap hm = new HashMap();
hm.put("1", "a1");
hm.put("2", "a2");
hm.put("3", "a3");
hm.put("4", "a4");
hm.put("5", "a5");

ArrayList list = new ArrayList();
list.addAll(hm.entrySet());
System.out.println(list);

Is This Answer Correct ?    4 Yes 3 No

how copy the hashmap object into arraylist at java program?..

Answer / fellow java novice

/* HashMap hm; assume hash map has array list objects in it


ArrayList al = (ArrayList) hm.get("name by which arraylist
sits in the hashmap");

/* the crux of the matter is the user of 'get' to access
from hashmap

Is This Answer Correct ?    0 Yes 6 No

how copy the hashmap object into arraylist at java program?..

Answer / deepak

new ArrayList(hashmap.values());

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More Core Java Interview Questions

What are the ways in which a thread can enter the waiting state?

0 Answers  


Why java is made?

0 Answers  


Can java object be locked down for exclusive use by a given thread?

0 Answers  


How many methods does cloneable interface contains?

6 Answers  


What is floating data type?

0 Answers  






What are the types of collections in java?

0 Answers  


How do you allocate memory to object?

0 Answers  


What are the rules for naming an array?

0 Answers  


What is the purpose of format function?

0 Answers  


Is it possible to create object with out its default constructor? if possible how? else not possible? justify

5 Answers  


what is mean by String and StringBuffer? What is mean by Methooverriding and Overloading?

2 Answers   Satyam,


How does marker interface provides functionality to the implemented class ? or How dose maker interface gets the functionalities as serialization or cloning.

4 Answers   Cap Gemini,


Categories