Hi,

Try using ArrayList instead of Vector if you DON'T need synchronization. Vectors are synchronised and ArrayLists aren't, this means that if you don't need the List to be synchronised you are gaining a lot of overhead for nothing. If only one thread is accessing those Vectors consider using ArrayList instead.

Hope This Helps