This is a very basic question, I'm just not that good with Java. I have a Map and I want to get a list or something of the keys in sorted order so I can iterate over them.
|
Use a
If you are working with another Map implementation that isn't sorted as you like, you can pass it to the constructor of
A |
|||||||||||||||
|
|
You have several options. Listed in order of preference:
The last two will get you what you want, but should only be used if you only want to iterate once and then forget the whole thing. |
|||||||||||
|
|
You can create a sorted collection when iterating but it make more sense to have a sorted map in the first place. (As has already been suggested) All the same, here is how you do it.
|
|||
|
|