If i interpret correctly, you have an array stored inside your Vector, and you want to find out the length of that array? If that is so, you need to cast the object to the array type, and call the length property on it.
Eg. if your Vector contains a String array:
String[] elements = (String[])vector.get(0);
int length = elements.length;