1. 程式人生 > >servlet實現檔案上傳

servlet實現檔案上傳

一、Servlet實現檔案上傳,需要新增第三方提供的jar包

下載地址:

1) commons-fileupload-1.2.2-bin.zip      :   點選開啟連結

2) commons-io-2.3-bin.zip                       :   

點選開啟連結    


接著把這兩個jar包放到 lib資料夾下


二:

檔案上傳的表單提交方式必須是POST方式,

編碼型別:enctype=”multipart/form-data”,預設是 application/x-www-form-urlencoded

比如:<form action=”FileUpLoad”enctype=”multipart/form-data”method=”post”>




三、舉例

1.fileupload.jsp

[html] view plain copy print ?
  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.   
  7. <!DOCTYPE HTML PUBLIC ”-//W3C//DTD HTML 4.01 Transitional//EN”>  
  8. <html>  
  9.   <head>  
  10.     <base href=“<%=basePath%>”>  
  11.       
  12.     <title>My JSP ‘fileupload.jsp’ starting page</title>  
  13.       
  14.     <meta http-equiv=“pragma” content=“no-cache”>  
  15.     <meta http-equiv=“cache-control” content=“no-cache”>  
  16.     <meta http-equiv=“expires” content=“0”>      
  17.     <meta http-equiv=“keywords” content=“keyword1,keyword2,keyword3”>  
  18.     <meta http-equiv=“description” content=“This is my page”>  
  19.     <!– 
  20.     <link rel=”stylesheet” type=”text/css” href=”styles.css”> 
  21.     –>  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.      <!– enctype 預設是 application/x-www-form-urlencoded –>  
  27.      <form action=“FileUpLoad” enctype=“multipart/form-data” method=“post” >  
  28.           
  29.                使用者名稱:<input type=“text” name=“usename”> <br/>  
  30.                上傳檔案:<input type=“file” name=“file1”><br/>  
  31.               上傳檔案: <input type=“file” name=“file2”><br/>  
  32.               <input type=“submit” value=“提交”/>  
  33.        
  34.      </form>  
  35.        
  36.        
  37.        
  38.   </body>  
  39. </html>  
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'fileupload.jsp' starting page</title>

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

  </head>

  <body>
     <!-- enctype 預設是 application/x-www-form-urlencoded -->
     <form action="FileUpLoad" enctype="multipart/form-data" method="post" >

               使用者名稱:<input type="text" name="usename"> <br/>
               上傳檔案:<input type="file" name="file1"><br/>
              上傳檔案: <input type="file" name="file2"><br/>
              <input type="submit" value="提交"/>

     </form>



  </body>
</html>

2.實際處理檔案上傳的 FileUpLoad.java

[java] view plain copy print ?
  1. package com.servlet.fileupload;  
  2.   
  3. import java.io.File;  
  4. import java.io.*;  
  5. import java.io.IOException;  
  6. import java.io.PrintWriter;  
  7. import java.util.List;  
  8.   
  9. import javax.servlet.ServletException;  
  10. import javax.servlet.http.HttpServlet;  
  11. import javax.servlet.http.HttpServletRequest;  
  12. import javax.servlet.http.HttpServletResponse;  
  13.   
  14. import org.apache.commons.fileupload.FileItem;  
  15. import org.apache.commons.fileupload.FileUploadException;  
  16. import org.apache.commons.fileupload.disk.DiskFileItemFactory;  
  17. import org.apache.commons.fileupload.servlet.ServletFileUpload;  
  18.   
  19. /** 
  20.  *  
  21.  * @author Administrator 
  22.  * 檔案上傳 
  23.  * 具體步驟: 
  24.  * 1)獲得磁碟檔案條目工廠 DiskFileItemFactory 要導包 
  25.  * 2) 利用 request 獲取 真實路徑 ,供臨時檔案儲存,和 最終檔案儲存 ,這兩個儲存位置可不同,也可相同 
  26.  * 3)對 DiskFileItemFactory 物件設定一些 屬性 
  27.  * 4)高水平的API檔案上傳處理  ServletFileUpload upload = new ServletFileUpload(factory); 
  28.  * 目的是呼叫 parseRequest(request)方法  獲得 FileItem 集合list , 
  29.  *      
  30.  * 5)在 FileItem 物件中 獲取資訊,   遍歷, 判斷 表單提交過來的資訊 是否是 普通文字資訊  另做處理 
  31.  * 6) 
  32.  *    第一種. 用第三方 提供的  item.write( new File(path,filename) );  直接寫到磁碟上 
  33.  *    第二種. 手動處理   
  34.  * 
  35.  */  
  36. public class FileUpLoad extends HttpServlet {  
  37.   
  38.     public void doPost(HttpServletRequest request, HttpServletResponse response)  
  39.             throws ServletException, IOException {  
  40.           
  41.         request.setCharacterEncoding(”utf-8”);  //設定編碼  
  42.           
  43.         //獲得磁碟檔案條目工廠  
  44.         DiskFileItemFactory factory = new DiskFileItemFactory();  
  45.         //獲取檔案需要上傳到的路徑  
  46.         String path = request.getRealPath(”/upload”);  
  47.           
  48.         //如果沒以下兩行設定的話,上傳大的 檔案 會佔用 很多記憶體,  
  49.         //設定暫時存放的 儲存室 , 這個儲存室,可以和 最終儲存檔案 的目錄不同  
  50.         /** 
  51.          * 原理 它是先存到 暫時儲存室,然後在真正寫到 對應目錄的硬碟上,  
  52.          * 按理來說 當上傳一個檔案時,其實是上傳了兩份,第一個是以 .tem 格式的  
  53.          * 然後再將其真正寫到 對應目錄的硬碟上 
  54.          */  
  55.         factory.setRepository(new File(path));  
  56.         //設定 快取的大小,當上傳檔案的容量超過該快取時,直接放到 暫時儲存室  
  57.         factory.setSizeThreshold(1024*1024) ;  
  58.           
  59.         //高水平的API檔案上傳處理  
  60.         ServletFileUpload upload = new ServletFileUpload(factory);  
  61.           
  62.           
  63.         try {  
  64.             //可以上傳多個檔案  
  65.             List<FileItem> list = (List<FileItem>)upload.parseRequest(request);  
  66.               
  67.             for(FileItem item : list)  
  68.             {  
  69.                 //獲取表單的屬性名字  
  70.                 String name = item.getFieldName();  
  71.                   
  72.                 //如果獲取的 表單資訊是普通的 文字 資訊  
  73.                 if(item.isFormField())  
  74.                 {                     
  75.                     //獲取使用者具體輸入的字串 ,名字起得挺好,因為表單提交過來的是 字串型別的  
  76.                     String value = item.getString() ;  
  77.                       
  78.                     request.setAttribute(name, value);  
  79.                 }  
  80.                 //對傳入的非 簡單的字串進行處理 ,比如說二進位制的 圖片,電影這些  
  81.                 else  
  82.                 {  
  83.                     /** 
  84.                      * 以下三步,主要獲取 上傳檔案的名字 
  85.                      */  
  86.                     //獲取路徑名  
  87.                     String value = item.getName() ;  
  88.                     //索引到最後一個反斜槓  
  89.                     int start = value.lastIndexOf(“\\”);  
  90.                     //擷取 上傳檔案的 字串名字,加1是 去掉反斜槓,  
  91.                     String filename = value.substring(start+1);  
  92.                       
  93.                     request.setAttribute(name, filename);  
  94.                       
  95.                     //真正寫到磁碟上  
  96.                     //它丟擲的異常 用exception 捕捉  
  97.                       
  98.                     //item.write( new File(path,filename) );//第三方提供的  
  99.                       
  100.                     //手動寫的  
  101.                     OutputStream out = new FileOutputStream(new File(path,filename));  
  102.                       
  103.                     InputStream in = item.getInputStream() ;  
  104.                       
  105.                     int length = 0 ;  
  106.                     byte [] buf = new byte[1024] ;  
  107.                       
  108.                     System.out.println(”獲取上傳檔案的總共的容量:”+item.getSize());  
  109.   
  110.                     // in.read(buf) 每次讀到的資料存放在   buf 陣列中  
  111.                     while( (length = in.read(buf) ) != -1)  
  112.                     {  
  113.                         //在   buf 陣列中 取出資料 寫到 (輸出流)磁碟上  
  114.                         out.write(buf, 0, length);  
  115.                           
  116.                     }  
  117.                       
  118.                     in.close();  
  119.                     out.close();  
  120.                 }  
  121.             }  
  122.               
  123.               
  124.               
  125.         } catch (FileUploadException e) {  
  126.             // TODO Auto-generated catch block  
  127.             e.printStackTrace();  
  128.         }  
  129.         catch (Exception e) {  
  130.             // TODO Auto-generated catch block  
  131.               
  132.             //e.printStackTrace();  
  133.         }  
  134.           
  135.           
  136.         request.getRequestDispatcher(”filedemo.jsp”).forward(request, response);  
  137.           
  138.   
  139.     }  
  140.   
  141. }  
package com.servlet.fileupload;

import java.io.File;
import java.io.*;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;

/**
 * 
 * @author Administrator
 * 檔案上傳
 * 具體步驟:
 * 1)獲得磁碟檔案條目工廠 DiskFileItemFactory 要導包
 * 2) 利用 request 獲取 真實路徑 ,供臨時檔案儲存,和 最終檔案儲存 ,這兩個儲存位置可不同,也可相同
 * 3)對 DiskFileItemFactory 物件設定一些 屬性
 * 4)高水平的API檔案上傳處理  ServletFileUpload upload = new ServletFileUpload(factory);
 * 目的是呼叫 parseRequest(request)方法  獲得 FileItem 集合list ,
 *     
 * 5)在 FileItem 物件中 獲取資訊,   遍歷, 判斷 表單提交過來的資訊 是否是 普通文字資訊  另做處理
 * 6)
 *    第一種. 用第三方 提供的  item.write( new File(path,filename) );  直接寫到磁碟上
 *    第二種. 手動處理  
 *
 */
public class FileUpLoad extends HttpServlet {

    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        request.setCharacterEncoding("utf-8");  //設定編碼

        //獲得磁碟檔案條目工廠
        DiskFileItemFactory factory = new DiskFileItemFactory();
        //獲取檔案需要上傳到的路徑
        String path = request.getRealPath("/upload");

        //如果沒以下兩行設定的話,上傳大的 檔案 會佔用 很多記憶體,
        //設定暫時存放的 儲存室 , 這個儲存室,可以和 最終儲存檔案 的目錄不同
        /**
         * 原理 它是先存到 暫時儲存室,然後在真正寫到 對應目錄的硬碟上, 
         * 按理來說 當上傳一個檔案時,其實是上傳了兩份,第一個是以 .tem 格式的 
         * 然後再將其真正寫到 對應目錄的硬碟上
         */
        factory.setRepository(new File(path));
        //設定 快取的大小,當上傳檔案的容量超過該快取時,直接放到 暫時儲存室
        factory.setSizeThreshold(1024*1024) ;

        //高水平的API檔案上傳處理
        ServletFileUpload upload = new ServletFileUpload(factory);


        try {
            //可以上傳多個檔案
            List<FileItem> list = (List<FileItem>)upload.parseRequest(request);

            for(FileItem item : list)
            {
                //獲取表單的屬性名字
                String name = item.getFieldName();

                //如果獲取的 表單資訊是普通的 文字 資訊
                if(item.isFormField())
                {                   
                    //獲取使用者具體輸入的字串 ,名字起得挺好,因為表單提交過來的是 字串型別的
                    String value = item.getString() ;

                    request.setAttribute(name, value);
                }
                //對傳入的非 簡單的字串進行處理 ,比如說二進位制的 圖片,電影這些
                else
                {
                    /**
                     * 以下三步,主要獲取 上傳檔案的名字
                     */
                    //獲取路徑名
                    String value = item.getName() ;
                    //索引到最後一個反斜槓
                    int start = value.lastIndexOf("\\");
                    //擷取 上傳檔案的 字串名字,加1是 去掉反斜槓,
                    String filename = value.substring(start+1);

                    request.setAttribute(name, filename);

                    //真正寫到磁碟上
                    //它丟擲的異常 用exception 捕捉

                    //item.write( new File(path,filename) );//第三方提供的

                    //手動寫的
                    OutputStream out = new FileOutputStream(new File(path,filename));

                    InputStream in = item.getInputStream() ;

                    int length = 0 ;
                    byte [] buf = new byte[1024] ;

                    System.out.println("獲取上傳檔案的總共的容量:"+item.getSize());

                    // in.read(buf) 每次讀到的資料存放在   buf 陣列中
                    while( (length = in.read(buf) ) != -1)
                    {
                        //在   buf 陣列中 取出資料 寫到 (輸出流)磁碟上
                        out.write(buf, 0, length);

                    }

                    in.close();
                    out.close();
                }
            }



        } catch (FileUploadException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        catch (Exception e) {
            // TODO Auto-generated catch block

            //e.printStackTrace();
        }


        request.getRequestDispatcher("filedemo.jsp").forward(request, response);


    }

}


System.out.println(“獲取上傳檔案的總共的容量:”+item.getSize()); 


3.filedemo.jsp

[html] view plain copy print ?
  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.   
  7. <!DOCTYPE HTML PUBLIC ”-//W3C//DTD HTML 4.01 Transitional//EN”>  
  8. <html>  
  9.   <head>  
  10.     <base href=“<%=basePath%>”>  
  11.       
  12.     <title>My JSP ‘filedemo.jsp’ starting page</title>  
  13.       
  14.     <meta http-equiv=“pragma” content=“no-cache”>  
  15.     <meta http-equiv=“cache-control” content=“no-cache”>  
  16.     <meta http-equiv=“expires” content=“0”>      
  17.     <meta http-equiv=“keywords” content=“keyword1,keyword2,keyword3”>  
  18.     <meta http-equiv=“description” content=“This is my page”>  
  19.     <!– 
  20.     <link rel=”stylesheet” type=”text/css” href=”styles.css”> 
  21.     –>  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.       
  27.     使用者名稱:{requestScope.usename&nbsp;}&nbsp;<span class="tag">&lt;</span><span class="tag-name">br</span><span class="tag">/&gt;</span><span>&nbsp;&nbsp;</span></span></li><li class=""><span>&nbsp;&nbsp;&nbsp;&nbsp;檔案:{requestScope.file1 }<br/>  
  28.     ${requestScope.file2 }<br/>  
  29.     <!– 把上傳的圖片顯示出來 –>  
  30.     <img alt=“go” src=”upload/<%=(String)request.getAttribute(“file1“)%> ” />  
  31.       
  32.       
  33.       
  34.   </body>  
  35. </html>  
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'filedemo.jsp' starting page</title>

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

  </head>

  <body>

    使用者名稱:${requestScope.usename } <br/>
    檔案:${requestScope.file1 }<br/>
    ${requestScope.file2 }<br/>
    <!-- 把上傳的圖片顯示出來 -->
    <img alt="go" src="upload/<%=(String)request.getAttribute("file1")%> " />



  </body>
</html>

4結果頁面


下載連結:

1)Struts2之下載  點選開啟連結

2)Struts2單個檔案和多個檔案上傳  點選開啟連結



一、Servlet實現檔案上傳,需要新增第三方提供的jar包

下載地址:

1) commons-fileupload-1.2.2-bin.zip      :   點選開啟連結

2) commons-io-2.3-bin.zip                       :    點選開啟連結    


接著把這兩個jar包放到 lib資料夾下


二:

檔案上傳的表單提交方式必須是POST方式,

編碼型別:enctype=”multipart/form-data”,預設是 application/x-www-form-urlencoded

比如:<form action=”FileUpLoad”enctype=”multipart/form-data”method=”post”>




三、舉例

1.fileupload.jsp

[html] view plain copy print ?
  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.   
  7. <!DOCTYPE HTML PUBLIC ”-//W3C//DTD HTML 4.01 Transitional//EN”>  
  8. <html>  
  9.   <head>  
  10.     <base href=“<%=basePath%>”>  
  11.       
  12.     <title>My JSP ‘fileupload.jsp’ starting page</title>  
  13.       
  14.     <meta http-equiv=“pragma” content=“no-cache”>  
  15.     <meta http-equiv=“cache-control” content=“no-cache”>  
  16.     <meta http-equiv=“expires” content=“0”>      
  17.     <meta http-equiv=“keywords” content=“keyword1,keyword2,keyword3”>  
  18.     <meta http-equiv=“description” content=“This is my page”>  
  19.     <!– 
  20.     <link rel=”stylesheet” type=”text/css” href=”styles.css”> 
  21.     –>  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.      <!– enctype 預設是 application/x-www-form-urlencoded –>  
  27.      <form action=“FileUpLoad” enctype=“multipart/form-data” method=“post” >  
  28.           
  29.                使用者名稱:<input type=“text” name=“usename”> <br/>  
  30.                上傳檔案:<input type=“file” name=“file1”><br/>  
  31.