检索Servlet中的单选按钮

时间:2013-01-18 11:57:22

标签: java servlets null

我正在使用Servlet。即使选中单选按钮,request.getParameter()也始终返回空值。有人可以帮忙吗?

这是我的index.jsp页面

<html>
<body>
<form action="FileLoader" method="post" enctype="multipart/form-data">
<p>
<label>
<input type="radio" name="se" value="pre-signing" checked = "checked">
Pre-signing </label>
<br>
<label>
<input type="radio" name="se" value="post-signing">
Post-signing </label>
</p>
</body>
</html>

这是我的servlet页面

public void doPost(HttpServletRequest request,HttpServletResponse response)throws  ServletException, java.io.IOException {
String radioButton= request.getParameter("se");
System.out.println("radioButton ::"+radioButton);}

即使选中单选按钮,它也会返回空值。

0 个答案:

没有答案