我正在编写Java Web应用程序。我正在尝试使用multipart-config上传文件,但是当我从请求中调用getPart()时出现NullPointerException。
我正在使用Tomcat 8和Eclipse for JavaEE。
这是servlet代码的一部分:
...
@Override
protected void doPost(
HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException {
Part filePart = request.getPart("json_file");
InputStream fileContent = filePart.getInputStream();
...
这是JSP文件中的表格:
...
<form action="${pageContext.request.contextPath}/processJson" method="POST" enctype="multipart/form-data">
<label for="json_file">Файл:</label>
<input type="file" name="json_file" id="json_file" accept=".json" />
<br /><br />
<div class="submit-container">
<input type="submit" name="ready" id="ready" value="Загрузить" />
</div>
</form>
...