-2
我想在我的doPost
方法中上傳文件,在servlet中是extends HttpServlet
。但是我沒有找到任何關於在override
servlet方法中上傳的例子。 我該怎麼做?如何在doPost方法中使用Spring上傳文件
@WebServlet("/uploadPage")
public class myServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String file = req.getParameter("fileUpload");
System.out.println(file);
byte[] myFile = // TODO????
}
}
謝謝你的幫助。
我問谷歌 - https://www.google.ca/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=servlet%20file%20upload% 20例子,這和你的代碼很相似(Servlet 3)http://www.codejava.net/java-ee/servlet/java-file-upload-example-with-servlet-30-api –