I trying to sort this HashMap based on date in keys
My Hash map:
Map<Date, ArrayList> m = new HashMap<Date, ArrayList>();
|
I trying to sort this HashMap based on date in keys My Hash map:
|
|||
|
Use a
Alternatively, if you have an existing
See also: |
|||
|
|
|
Use TreeMap instead of HashMap to store the data,it will be sorted automatically. |
|||||
|
Dates in an immutable fashion - calling any of that objectsget()methods actually mutates the values it holds, so the actual value depends on the order of (not only)set()s andget()s. I'd rather trust the JodaTime library for this... – Clockwork-Muse Nov 28 '11 at 16:49