I am trying to copy first 5 key value pair from Hash Table 1 to Hash Table 2 and Then next 6 to 10th Key value pair from Hash Table 1 to Hash Table 3.
I am not able to get this going,, can any one has any hint please share it with me
|
I am trying to copy first 5 key value pair from Hash Table 1 to Hash Table 2 and Then next 6 to 10th Key value pair from Hash Table 1 to Hash Table 3. I am not able to get this going,, can any one has any hint please share it with me |
|||||||||
|
|
Try something like this.
Add generics etc. as appropriate. |
|||
|
|
|
First of all, you need to know that a If you want the insertion order to be preserved, use a Besides, there's also a nice interface called If you can rely only on indices, aside from using a
Then just call splitMap(yourMap, 5) in order to get the collection (actually a list) of maps containing 5 entries each (or less for the last one if there are not enough entries in the initial map). |
|||
|
|