Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ArrayList paramList = new ArrayList(20); // some initial size
int index = 0;
String param;
while ( (param = getParameter("param" + (index++))) != null) {
paramList.add(param);
}
// Then if you really want an array
// you can always call paramList.toArray()