To replace an element in Java Vector,  set() method of java. util. Vector class can be used.  The set() method takes two parameters -the indexes of the element which has to be replaced and the new element.  vector.set(i,value);

Read more of this post