How to convert Vector with string to String array in java?
try this example
Vector token String[] criteria = new String[tokenVector.size()]; tokenVector.toArray(criteria);