elidoran Profile Answers by elidoran Mar 4th, 2006 Try to avoid the old Vector class. Use the List implementations (LinkedList, ArrayList). If you need them to be synchronized wrap them using Collections.synchronizedList(...). Much better performance this way.
When the vector object doubles it's size?