In order to get the uploaded information right, you need to do is set the
following parameters in your HTML <form> tag:

<form name="formName" enctype="MULTIPART/FORM-DATA" method="post"
action="yourAction" >

You'll have to use some java class to take care of the uploaded information.
at http://jakarta.apache.org/commons/fileupload you can find the FileUpload
component that can help you do that.

hope it helps,


Kiev


----- Original Message -----
From: "Trevor MacPhail" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 10:31 AM
Subject: Processing form uploaded files


> I would like to build a form to allow uploading of an image through a
servlet(using the <input type="file"> html tag) but can seem to find out how
to retrieve the information properly out of the request. Any suggestions?
>
> --
> Trevor MacPhail
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>



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

Reply via email to