【发布时间】:2013-12-01 21:06:50
【问题描述】:
我正在尝试使用扩展 HttpServlet 的 servlet 从 jsp 页面上传 csv 文件。在 jsp 页面中,我使用了一个应该调用 servlet 的 ajax。
这是ajax部分:
$(function() {
$(".upldBtn").click(function() {
alert("Upload button pushed");
$.ajax({
type: "POST",
url: contextPath + servletPath,
data: "action=get&custIdList=" + $('#custIdList').val(),
async: false,
dataType: "text/csv; charset=utf-8",
success: function(data){
alert("success");
}
});
});
contextPath 和 servletPath 也声明了,我这里没有指定。
在 jsp 页面中,我在表格中有这个表格:
<form method="post" action="CSRUploadListServlet" enctype="multipart/form-data">
<input type="file" name="custIdList" id="custIdList" />
<input type="submit" value="Upload" class="upldBtn" />
</form>
在servlet内部,我想使用这个doPost方法:
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
String methodName = "doPost";
logger.debug("[{}] call", methodName);
// checks if the request actually contains upload file
if (!ServletFileUpload.isMultipartContent(request)) {
PrintWriter writer = response.getWriter();
writer.println("Request does not contain upload data");
logger.debug("[{}] Request does not contain upload data",
methodName);
writer.flush();
return;
}
// configures upload settings
DiskFileItemFactory factory = new DiskFileItemFactory();
factory.setSizeThreshold(THRESHOLD_SIZE);
factory.setRepository(new File(System.getProperty("java.io.tmpdir")));
logger.debug("[{}] factory= {} ", methodName, factory);
ServletFileUpload upload = new ServletFileUpload(factory);
upload.setFileSizeMax(MAX_FILE_SIZE);
upload.setSizeMax(MAX_REQUEST_SIZE);
logger.debug("[{}] upload= {} ", methodName, upload);
// constructs the directory path to store upload file
String uploadPath = getServletContext().getRealPath("")
+ File.separator + UPLOAD_DIRECTORY;
// creates the directory if it does not exist
File uploadDir = new File(uploadPath);
if (!uploadDir.exists()) {
uploadDir.mkdir();
logger.debug("[{}] upload directory = {} ", methodName,
uploadDir.mkdir());
}
try {
// parses the request's content to extract file data
List formItems = upload.parseRequest(request);
Iterator iter = formItems.iterator();
// iterates over form's fields
while (iter.hasNext()) {
FileItem item = (FileItem) iter.next();
// processes only fields that are not form fields
if (!item.isFormField()) {
String fileName = new File(item.getName()).getName();
String filePath = uploadPath + File.separator + fileName;
File storeFile = new File(filePath);
// saves the file on disk
item.write(storeFile);
}
}
request.setAttribute("message",
"Upload has been done successfully!");
logger.debug("[{}] Upload has been done successfully! ", methodName);
} catch (Exception ex) {
request.setAttribute("message",
"There was an error: " + ex.getMessage());
logger.debug("[{}] There was an error: {} ", methodName, ex);
}
getServletContext().getRequestDispatcher(
"/WEB-INF/web/csrCustomerLists/message.jsp").forward(request,
response);
}
所有这些都卡在if (!ServletFileUpload.isMultipartContent(request)),返回:'请求不包含上传数据'。
我确定我没有正确编写 ajax,但我似乎无法找出我做错的地方。
谢谢。
【问题讨论】:
-
当你按下提交按钮然后
CSRUploadListServlet和contextPath + servletPath被调用,我可以知道为什么吗? -
是的,为了在我按下上传提交按钮时使用 servlet。
-
你不能像这样通过 Ajax 上传文件。您将文件视为普通参数。那是行不通的。见stackoverflow.com/questions/1686099/…
-
好的,我现在可以看到了,谢谢。但是,如果我避免使用 Ajax,则不会通过 servlet 访问表单