On Fri, 4 Oct 2002, Mark Silva wrote:

> so if you had a bunch of parameters like so
> 
> category=XYZ&key=123&category=ABC&key=256&category=AAA
> 
> how does struts correspond the category to the key? 

They don't. You have to go manually through all the arrays
(getCategory, getKey etc) and suppose all the values are
set in the appropriate order.

So you can do somthing like:

for (i = 0; i < key.size && i < category.size; i++) {
        System.out.println ("key: " + key[i]
                 + ", category: " + category[i]);
}

I think it's nicer than parsing stuff like
123_category=XYZ&124_category=ABC&129_category=AAA&123_color ...
;)

Pavel




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to