0

我正在使用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);}

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

4

1 回答 1

1

因为您的编码类型是多部分的..您的 http 请求将不包含您需要的信息。

它将在MultiPartRequest中可用.. 看到这个问题.. 它会有所帮助

于 2013-01-18T12:06:43.547 回答