The situation is as follows:
page.jsp?var[0]=foo&var[1]=bar
How can this be retrieved in an array in Java?
The following:
page.jsp?var=foo&var=bar
I know can be retrieved using request.getParameterValues("var")
Any solutions for the above though?