我想在tomcat 5.5中执行以下操作

1. upload a excel file
2. process the file based on some crieteria
3. show the result


我能够完成2到3的所有操作,但无法在tomcat 5.5中上传文件,也找不到示例。

请帮我。

最佳答案

也许您可以尝试Apache commons fileUpload

您可以获取样本here

here,您可以在没有太多概念和说明的情况下进行更多动手操作。

在您的Servlet上,您将只使用以下内容:



boolean isMultipart = ServletFileUpload.isMultipartContent(request);

if (isMultipart) {
    FileItemFactory factory = new DiskFileItemFactory();
    ServletFileUpload upload = new ServletFileUpload(factory);

    try {
        List items = upload.parseRequest(request);
        Iterator iterator = items.iterator();
        while (iterator.hasNext()) {
            FileItem item = (FileItem) iterator.next();

            if (!item.isFormField()) {
                String fileName = item.getName();

                String root = getServletContext().getRealPath("/");
                File path = new File(root + "/uploads");
                if (!path.exists()) {
                    boolean status = path.mkdirs();
                }

                File uploadedFile = new File(path + "/" + fileName);
                System.out.println(uploadedFile.getAbsolutePath());
                item.write(uploadedFile);
            }
        }
    } catch (FileUploadException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

关于java - 如何在Tomcat 5.5中上传文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11118456/

10-13 07:49