I run on the sheet knowing that every 2 indexes in the sheet form the HTTP + URL method.
Example:
list.get(0); //POST list.get(1); //loan/test?testArg=1234&id=5555555 The result is a string
POST/loan/test?testArg=1234&id=5555555 Here is the code:
for(int i=0; i<list.size(); i+=2){ System.out.println(list.get(i) + list.get(i+1)); } Now you need to create a separate string for each iteration and put the necessary values there.