String[] Q
Hi all. Yet another beginners problem. Isn't values below an array of Strings? If so what's the problem using the size() method on it?
String[] values = request.getParameterValues(UniqueID);
//compiler error!! cannot find symbol size()
for(int i=0; i<values.size(); i++)
{
//do something
}
>

