I am trying to upload a text file from client machine to server. Below is the code I am using in jsp.
<tr>
             <td class="FORMLABEL" nowrap valign=middle>
                <%= fileLabel %> 
             </td>
             <td class="FORMELEMENT" nowrap valign=middle>
              <input  size = "50" name="loadFile" type="FILE" >
             </td>
     </tr>
I have checked the content Type of the load file, it is application/x-www-form-urlencoded I need to read the file. How can I copy this file from client machine to the server using JSP?
 
     
    