Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
        String t1 = request.getParameter("t1");
        String t2 = request.getParameter("t2");

        List<String> terms = new ArrayList<String>();
        for (int i = 1; i < 51; i++) {
            terms.add(t + i);
        }

Imagine I had vars t1 to t50, is it possible to loop each t using a counter? Something like above, but obvi that doesn't work.

share|improve this question

6 Answers

You don't need the temporary variables, t1, t2, etc. Otherwise you were on the right track.

    List<String> terms = new ArrayList<String>();
    for (int i = 1; i < 51; i++) {
        terms.add(request.getParameter("t" + i));
    }
share|improve this answer

No, you can't "construct" variable names like that in Java (in fact, at runtime local variables don't even have any names).

You can, however, get rid of the variables entirely and call getParameter() with the appropriate values:

  List<String> terms = new ArrayList<String>();
  for (int i = 1; i < 51; i++) {
      terms.add(request.getParameter("t" + i);
  }
share|improve this answer

Instead of all the temp single variables just grab the parameters in a loop:

    List<String> terms = new ArrayList<String>();
    for (int i = 1; i < 51; i++) {
        terms.add(request.getParameter("t"+ i));
    }
share|improve this answer

Can't you do this?

for (int i = 1; i < 51; i++) {
    terms.add(request.getParameter("t" + i));
}
share|improve this answer
terms.add(request.getParameter("t" + i));

In your code you are adding to the list a string that is a non-existent variable t contatenated / summed with i

share|improve this answer

You cannot simply loop over variables. However, why don't you make t an array (string[]), or even an ArrayList if you do not know the size in advance. Then you wouldn't even need a loop, and you can access all variables in almost the same way?!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.