Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I trying to sort this HashMap based on date in keys

My Hash map:

Map<Date, ArrayList> m = new HashMap<Date, ArrayList>();

share|improve this question
#winces# I'd be careful of attempting to use this in a multi-threaded environment, if you aren't using those Dates in an immutable fashion - calling any of that objects get() methods actually mutates the values it holds, so the actual value depends on the order of (not only) set()s and get()s. I'd rather trust the JodaTime library for this... – Clockwork-Muse Nov 28 '11 at 16:49

2 Answers

up vote 11 down vote accepted

Use a TreeMap instead of HashMap. As Date already implements Comparable, it will be sorted automatically on insertion.

Map<Date, ArrayList> m = new TreeMap<Date, ArrayList>();

Alternatively, if you have an existing HashMap and want to create a TreeMap based on it, pass it to the constructor:

Map<Date, ArrayList> sortedMap = new TreeMap<Date, ArrayList>(m);

See also:

share|improve this answer

Use TreeMap instead of HashMap to store the data,it will be sorted automatically.

share|improve this answer
Welcome at Stack Overflow! Just curious, why are you repeating an already given answer? This isn't kind of a "discussion forum" where folks usually confirm the answer by repeating it more or something. Here on a Q&A site you just vote it up or post a better answer. See also stackoverflow.com/faq. – BalusC Nov 28 '11 at 16:10
Yeah,I got it.I will do better. – user1066566 Dec 7 '11 at 16:27

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.