我在 jsp 中编写了这段代码来将文件发送到 Servlet:
<input type="file" name="inputFoto" id="inputFoto"/>
我的 Servlet 是:
{...
File fotoImg = (File) request.getAttribute("inputFoto");
byte[] foto = convertiInArrayByte(fotoImg);
..}
这没用。如何从 JSP 获取 Servlet 中的文件?有人能帮我吗?也许文件的路径(在我的电脑上)有一些问题!?!?