Convert Hashtable to Vector.

Is there an easy way to convert a Hashtable to a vector containing the keys from the Hashtable?I know I can run through my Hashtable and adding the keys to a manually created Vector, but...
[203 byte] By [EikHors] at [2007-11-26 12:16:29]
# 1
new Vector(hashtable.keyset());
TimTheEnchantor at 2007-7-7 14:52:36 > top of Java-index,Archived Forums,Socket Programming...
# 2
new Vector(table);
CeciNEstPasUnProgrammeur at 2007-7-7 14:52:36 > top of Java-index,Archived Forums,Socket Programming...
# 3
Works perfect with keyset.Thank YOU!
EikHors at 2007-7-7 14:52:36 > top of Java-index,Archived Forums,Socket Programming...