Servlet上传文件详细解析以及注意事项

本文主要介绍了Servlet上传文件详细解析以及注意事项,分别用两个阶段来进行详细讲解。

AD:2013云计算架构师峰会超低价抢票中


准备阶段,下载需要的包:

在Servlet中进行文件上传需要用到外部的类库,apache提供了这些类库, 主要需要commons-fileupload.jar和commons-io.jar

下载的步骤如下:

进入www.apache.org网站, ――>在Projects下找到commons,点击进入――>找到Components下的FileUpload,点击进入就可以找到下载

页面如下:

可以看到这里有开发指南和下载地址,如果要详细学习,慢慢看这里的资源就可以了。

commons-io.jar包的下载地址:http://commons.apache.org/fileupload/dependencies.html

把两个jar包放到WEB-INF的lib目录下。

开发阶段:

上传页面:index.jsp

    
    
    
    
  1. <%@ page language="java"import="java.util.*" pageEncoding="UTF-8"%>  

  2. <%  

  3. String path = request.getContextPath();  

  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  

  5. %>  

  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  

  7. <html>  

  8.   <head>  

  9.     <base href="<%=basePath%>">  

  10.     <title>文件上传</title>  

  11.     <meta http-equiv="pragma" content="no-cache">  

  12.     <meta http-equiv="cache-control" content="no-cache">  

  13.     <meta http-equiv="expires" content="0">      

  14.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  

  15.     <meta http-equiv="description" content="This is my page">  

  16.     <!--  

  17.     <link rel="stylesheet" type="text/css" href="styles.css">  

  18.     -->  

  19.   </head>  

  20.   <body>  

  21.        <form action="upload" method="post" enctype="multipart/form-data">  

  22.            文件别名:<input type="text" name="filename"><br>  

  23.            选择文件:<input type="file" name="fileupload"><br>  

  24.            <input type="submit" value="提交">  

  25.        </form>  

  26.   </body>  

  27. </html>

这里注意第24行,上传文件时要指定提交方法method="post", 信息类型为enctype="multipart/form-data"


上传功能servlet:FileUpload

    
    
    
    
  1. package com.sunflower.servlet;  

  2. import java.io.File;  

  3. import java.io.IOException;  

  4. import java.util.Iterator;  

  5. import java.util.List;  

  6. import javax.servlet.ServletException;  

  7. import javax.servlet.http.HttpServlet;  

  8. import javax.servlet.http.HttpServletRequest;  

  9. import javax.servlet.http.HttpServletResponse;  

  10. import org.apache.commons.fileupload.FileItem;  

  11. import org.apache.commons.fileupload.FileItemFactory;  

  12. import org.apache.commons.fileupload.FileUploadException;  

  13. import org.apache.commons.fileupload.disk.DiskFileItemFactory;  

  14. import org.apache.commons.fileupload.servlet.ServletFileUpload;  

  15. publicclass FileUpload extends HttpServlet {  

  16. protectedvoid doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {  

  17.         req.setCharacterEncoding("UTF-8");  

  18.         fileControl(req, resp);  

  19.     }  

  20. /**

  21.      * 上传文件的处理

  22.      */

  23. privatevoid fileControl(HttpServletRequest req, HttpServletResponse resp) throws ServletException {  

  24. // 在解析请求之前先判断请求类型是否为文件上传类型

  25. boolean isMultipart = ServletFileUpload.isMultipartContent(req);  

  26. // 文件上传处理工厂

  27.         FileItemFactory factory = new DiskFileItemFactory();  

  28. // 创建文件上传处理器

  29.         ServletFileUpload upload = new ServletFileUpload(factory);  

  30. // 开始解析请求信息

  31.         List items = null;  

  32. try {  

  33.             items = upload.parseRequest(req);  

  34.         }  

  35. catch (FileUploadException e) {  

  36.             e.printStackTrace();  

  37.         }  

  38. // 对所有请求信息进行判断

  39.         Iterator iter = items.iterator();  

  40. while (iter.hasNext()) {  

  41.             FileItem item = (FileItem) iter.next();  

  42. // 信息为普通的格式

  43. if (item.isFormField()) {  

  44.                 String fieldName = item.getFieldName();  

  45.                 String value = item.getString();  

  46.                 req.setAttribute(fieldName, value);  

  47.             }  

  48. // 信息为文件格式

  49. else {  

  50.                 String fileName = item.getName();  

  51. int index = fileName.lastIndexOf("\\");  

  52.                 fileName = fileName.substring(index + 1);  

  53.                 req.setAttribute("realFileName", fileName);  

  54. // 将文件写入

  55. //                String path = req.getContextPath();

  56. //                String directory = "uploadFile";

  57. //                String basePath = req.getScheme() + "://" + req.getServerName() + ":" + req.getServerPort() + path + "/" + directory;

  58.                 String basePath = req.getRealPath("/uploadFile");  

  59.                 File file = new File(basePath, fileName);  

  60. try {  

  61.                     item.write(file);  

  62.                 }  

  63. catch (Exception e) {  

  64.                     e.printStackTrace();  

  65.                 }  

  66.             }  

  67.         }  

  68. try {  

  69.             req.getRequestDispatcher("/uploadsuccess.jsp").forward(req, resp);  

  70.         }  

  71. catch (IOException e) {  

  72.             e.printStackTrace();  

  73.         }  

  74.     }  

  75. }

这里要注意第66~68行,将文件上传到Web项目的"uploadFile"文件夹中,如果用这种方法得到的路径是"http://localhost:8080/upload/uploadFile", 而创建File类用的路径是绝对路径,这样就会出问题,所以这里要用的是得到真实路径的方法HttpServletRequest.getRealPath().


以上是最简单的文件上传,如果要加入上传的限制可以在DiskFileItemFactory和ServletFileUpload中进行限制:

在34行后加入:

    
    
    
    
  1. //创建临时文件目录

  2.        File tempFile = new File(req.getRealPath("/temp"));  

  3. //设置缓存大小

  4.        ((DiskFileItemFactory) factory).setSizeThreshold(1024*1024);  

  5. //设置临时文件存放地点

  6.        ((DiskFileItemFactory) factory).setRepository(tempFile);

注意第72行的FileItem.write()方法,如果使用了这个方法写入文件,那么临时文件会被系统自动删除.

在38行后加入:

    
    
    
    
  1. //将页面请求传递信息最大值设置为50M

  2. upload.setSizeMax(1024*1024*50);  

  3. //将单个上传文件信息最大值设置为6M

  4. upload.setFileSizeMax(1024*1024*6);

原文链接:http://www.cnblogs.com/hanyuan/archive/2012/06/09/upload.html


你可能感兴趣的:(servlet,fileupload,commons,FileItemFactory)