I would like to know if is it possible to create a vector of hashtables ?
i tried
java.util.Hashtable<String, String>[] info = new java.util.Hashtable<String, String>();
but haven't any luck :(
Thanks.
|
|
|
I think you want
|
|||
|
|
|
A I'd advise you to use In most cases, you'd want a Map of Lists rather than a List of Maps, and if you do, I'd use one of the many custom implementations available, first and foremost Guava's |
|||
|
|
|
You probably want:
This can be simplified somewhat with type inference and a library such as Guava:
|
||||
|
Try to make sure you are using as abstract an interface for the collections you are using as possible.
Then you can add your hashtables
|
|||||||||
|