OK so I've been messing around with the code and I this is what I have at the moment:
ListIterator vIter = vec.listIterator() ;
while ( vIter.hasNext() )
{
System.out.println( vIter.next() ) ;
}
It works, but the output is as follows:
I know that Im printing the vector, not the actual content. How do I print the content ?