I have an Iterator that I use on a HashMap, and I save and load the iterator. is there a way to get the previous key in the HashMap with Iterator? (java.util.Iterator)
Update
I save it as an attribute in a Red5 connection and then load it back to continue working where i stopped.
Another update
I'm iterating through the keyset of the HashMap
HashMaphas no fixed ordering and may change depending on object's hashcode. If you want an orderedMap, considerTreeMap(auto-sort on keys) orLinkedHashMap(insertion order). – BalusC May 5 '10 at 12:23