I have a vector of string.
well i'm doing in the line
Vector <String[]> vector =new Vector();
is creating a Vector and each element in the vector will be an array of String, it will have the size and properties of the type String.
if a do Vector vector = new Vector(); every element in the vector will be a Object insted of a String. Both can be use.