在我的jsp中使用enctype =“multipart / form-data”形式的文件上传,并在另一个jsp中获取表单值。我得到空值。 PLZ ......任何人都告诉任何解决方案......提前感谢.. 听到的是我的jsp编码
<html>
<head></head>
<body>
<form name="corporateProfile" method="POST"
onsubmit="return checkTheFields();" action="editUpdate.jsp"
enctype="multipart/form-data">
<table>
<tr>
<td class="bgcolor" align="right" valign="top" style="padding:3px">
<b>Upload Customer Logo</b></td>
<td colspan="3" class="bgcolor" align="left" valign="top"
style="padding:3px">
<input TYPE="file" VALUE="Browse" NAME="uploadCustomerLogo"
maxlength="1000" size="40" class="controlStyle" tabindex="17">
</td>
</tr>
<tr>
<td>
<input type="text" name="email" id="email" size="40"
class="controlStyle" maxlength="256" tabindex="11">
</td>
</tr>
</table>
</body>
</form>
</html>
editUpdate.jsp
<%
String params = request.getParamater("email");
out.println(params);
%>
输出
null
答案 0 :(得分:2)
getParameter
将返回null。
列出了4种解决方案here。
答案 1 :(得分:0)
为< form >
代码
<form name="corporateProfile" id="corporateProfile"
然后尝试request.getParamater("email");