You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Da...@rnib.org.uk on 2004/09/03 09:16:15 UTC

javascript and servlets.

I have a form with multiple <input name="file0"> elements.
The names are generated and range file0..n

I'm trying (and failing) to retrieve the value of the input fields.
String f ="";
	f = request.getParameter("file0");
works fine; 
   The remainder appear inaccessible.
In the docs ...webapps/tomcat-docs/servletapi/index.html
I'm warned:
  You should only use this method when you are sure the parameter has only
one value. If the parameter might have more than one value, use
getParameterValues(java.lang.String).

However, since each entry within the form has a variant name value,
what parameter should I pass to the getParameterValues method
to retrieve the multiple values?

tc 5.0.27 in use.


Regards DaveP.

**** snip here *****

-- 
DISCLAIMER: 

NOTICE: The information contained in this email and any attachments is 
confidential and may be privileged. If you are not the intended 
recipient you should not use, disclose, distribute or copy any of the 
content of it or of any attachment; you are requested to notify the 
sender immediately of your receipt of the email and then to delete it 
and any attachments from your system. 

RNIB endeavours to ensure that emails and any attachments generated by 
its staff are free from viruses or other contaminants. However, it 
cannot accept any responsibility for any  such which are transmitted.
We therefore recommend you scan all attachments. 

Please note that the statements and views expressed in this email and 
any attachments are those of the author and do not necessarily represent 
those of RNIB. 

RNIB Registered Charity Number: 226227 

Website: http://www.rnib.org.uk 

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: javascript and servlets.

Posted by John Villar <jo...@florhard.com>.
A better approach would be to name all the fields "file" instead of 
"fileX" and then us the getParameterValues to get the enumeration of 
values taken from the fields named "file".... very simple and 
elegant.... not "for (int...." loop.... just a plain old while 
(enum.hasMoreElements()){ enum.nextElement().....}

if your javascrip relies on the field names, you can use the fields ID 
instead, because field ID isn't passed as parameter name....

David.Pawson@rnib.org.uk escribió:

>I have a form with multiple <input name="file0"> elements.
>The names are generated and range file0..n
>
>I'm trying (and failing) to retrieve the value of the input fields.
>String f ="";
>	f = request.getParameter("file0");
>works fine; 
>   The remainder appear inaccessible.
>In the docs ...webapps/tomcat-docs/servletapi/index.html
>I'm warned:
>  You should only use this method when you are sure the parameter has only
>one value. If the parameter might have more than one value, use
>getParameterValues(java.lang.String).
>
>However, since each entry within the form has a variant name value,
>what parameter should I pass to the getParameterValues method
>to retrieve the multiple values?
>
>tc 5.0.27 in use.
>
>
>Regards DaveP.
>
>**** snip here *****
>
>  
>

-- 
John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com