我在我的 index.jsp 中使用它:
<FORM enctype="multipart/form-data" action="saveFile.jsp" method="POST">
Choose the file To Upload:<br>
<INPUT name="Filename" placeholder="Name to give your file"/>
<INPUT name="File" type="file" accept ="image/jpeg"/>
<INPUT TYPE="submit" VALUE="Send File" />
</FORM>
在 saveFile.jsp 中,字符串名称应该使用 request.getParameter("Filename") 从输入字段中获取值,但它返回的值为 null;
String name = request.getParameter("Filename");
我知道请求已发送,因为文件确实已交付给我,但我无法弄清楚为什么我的这部分代码会失败。