I want to retrieve value from radio button, here is my index.jsp
<form action="upload" method="post" enctype="multipart/form-data">
  <input type="radio" name="radios" value="radio1" checked>Radio Button 1
  <input type="radio" name="radios" value="radio2">Radio Button 2
  <table border="1">
    <tr>
      <td>
        <input type="file" name="file" />
      </td>
    </tr>
  </table>
  <input type="submit" value="Upload" />
</form>I have used the radio button along with file input and so I need to keep the multipart/form-data.
I first tried with request.getParameter("radios") but later I came to know that it is impossible to retrieve value with it.
 
    