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
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||||||
|
|
There are few things that you need to consider before you make any decision about selecting any decision
|
|||
|
|
|
You might want to check out the map interface. |
|||
|
|