... and a direct access ist faster than the enumeration.
public final static String[] toStringArray( Vector vect )
{
if ( vect == null )
return null;
int size = vect.size();
String[] result = new String[ size ];
for ( int i = 0; i < size; i++ )
result[i] = vect.elementAt( i ).toString();
return result;
}
Nobody/Anonymous ( nobody ) - 2004-03-30 19:40
5
Open
None
Nobody/Anonymous
None
None
Public