Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how copy the hashmap object into arraylist at java program?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the java virtual machine?

1014


Explain about core java?

1057


whar are the draw backs of programming lang step by step in Clang and next in C++ and next and in Java nad in .Net

2058


What are different ways of object creation in java ?

1017


What are the 6 mandatory procedures for iso 9001?

946


What are adapter classes?

976


Why singleton pattern is better than creating singleton class with static instance?

950


What is the largest number a double can hold?

975


What are the limitations of procedural programming approach?

997


Why Set interface contains unique elements, what internally implemented for this so that it contains unique elements?

8005


Can you extend singleton class?

1034


How will you add panel to a frame?

1046


Why java doesn’t support multiple inheritances?

959


Can an interface be defined inside a class?

999


What is the difference between yield() and sleep()?

955