Originally posted by Robert Johnson: if i have... String[] homeTeamScores = request.getParameterValues("homeTeamScore");
can i use... int[] homeTeamScores = Integer.parseInt(homeTeamScore[]);
No, homeTeamScore is of type Array, Integer.parseInt takes a String. Also 'homeTeamScore[]' isn't valid syntax. You use empty [] to declare an Array, once you have an Array you can either use the Array itself or access what it holds with [int].
You will have to loop through homeTeamScore.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.