Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in my project i have to store some data in the format in the Key=value and later i will just read this value so which collection will be suite for me . Thanks in Advance

share|improve this question

3 Answers

What you're referring to is a Map.

If you're going to always access via key / value, use HashMap. If you intend on cycling through all values, HashMap is horridly inefficient and so you should use LinkedHashMap instead.

share|improve this answer
TreeMap if he wants it sorted. – st0le Oct 28 '10 at 9:57
@madhurtanwani if you only need the values, then use map.values(), not map.entrySet() – Sean Patrick Floyd Oct 28 '10 at 10:17
agree @seanier - that was stupid :( – madhurtanwani Oct 28 '10 at 10:25

There are few things that you need to consider before you make any decision about selecting any decision

  1. Whether the items needs to be ordered
  2. Whether the items needs to be sorted
  3. whether collection needs to be synchronized or not and many more Here is the link where you can get more information about the process of selecting the collection. http://www.javamex.com/tutorials/collections/how_to_choose.shtml
share|improve this answer

You might want to check out the map interface.

share|improve this answer

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.