我想从单选按钮中检索值,这是我的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>
我使用了单选按钮和文件输入,所以我需要保留multipart / form-data。
我首先尝试使用request.getParameter("radios")
,但后来我才知道用它检索价值是不可能的。