Mega Code Archive

 
Categories / Java / Collections Data Structure
 

Remove an element from specified index of Java Vector

import java.util.Vector; public class Main {   public static void main(String[] args) {     Vector<String> v = new Vector<String>();     v.add("1");     v.add("2");     v.add("3");     v.add("4");     v.add("5");     Object obj = v.remove(1);     System.out.println(obj + " is removed from Vector");     for (String str: v)       System.out.println(str);     v.removeElementAt(2);     for (String str: v)       System.out.println(str);   } }