Man im pulling my hair here.... Problem is pretty simple however i cant get it to work...
im having a list of strings that i retreive through a hashmap... now i want to sort that list.
what to do from here...
Quote:
Hashtable hashtable=new hashtable with some value in it
SimpleSortingVector sortedVector=new SimpleSortingVector();
for (Enumeration e=hashtable.keys(); e.hasMoreElements();) {
sortedVector.add=(String)hashtable.get(e.nextEleme nt());
} |
im really not familier with the comparable interface... can someone help me with an example plz?