Hello All,
I am in a process of writing a
java program which queries a database. I am retreiving all kinds of information and then I have to display it as a report. My concern is that that I have to make a HashMap inside a HashMap. What I mean is
HashMap1
-------------
Keys | Values
--------------
Unique| HashMap2
Unique| HashMap3
.
.
.
.
The HashMap2 also have there unique keys and values.
Is there a better solution than the soln I presented??
Thanks in advance for your help!
-Amish