I've created a Hashtable, who's values are Vectors: > > Vector a = new Vector(); > a.add("something"); > a.add("somethingelse"); > > Vector b = new Vector(); > b.add("something1"); > b.add("somethingelse2"); > > Hashtable ht = new Hashtable(); > ht.put ("key", a); > ht.put ("anotherkey", b); > > > > What I want to be able to do is iterate through this Hashtable (in the JSP), > pull out a Vector, and iterate through it.