I have a sorting issue with a Hashmap. My constraint is that
I MUST use the Hashmap and work with existing code. I do a
database query and place the results in a Hashmap. When I
iterate thru the Hashmap, it loses the original alphabetical
sorting done by the database. So, my problem is that I must
sort the results coming out of the Hashmap which is then
placed into another class.
Answer / murali.25
1) Use a tree map or construct a treemap from hashmap.
2) If you have used order by in the query to DB, use LinkedHashMap
3) Have a java class with attributes corresponding to fields from the database table. Implement comparator interface.
| Is This Answer Correct ? | 3 Yes | 1 No |
What is the difference between access specifiers and access modifiers in java?
What is emant by API? is it related to java only or it is common for all OOPS supporting language?
i need source code for income tax program using java inheritance
What do you understand by soft reference?
What do you understand by access specifiers in Java?
Why do we need strings in java?
Is set sorted in java?
Can we override static methods?
18 Answers Bally Technologies,
in a console we r giving java <class name> if r pressing enter where it'll goes
what is the difference between a threads start() and run() methods? : Java thread
Write a factorial program using recursion in java?
What are different types of control structures?