jsp/servlet 完成檔案上傳__js

來源:互聯網
上載者:User
 

 

common-fileupload組件
下載地址:http://jakarta.apache.org/commons/fileupload/
下載後解壓zip包,將commons-fileupload-1.0.jar複製到tomcat的webapps/你的webapp/WEB-INF/lib/下

Create a servlet
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import org.apache.commons.fileupload.*;

 

public class Upload extends HttpServlet {

 

    private String uploadPath = "C://upload//"; // 用於存放上傳檔案的目錄
    private String tempPath = "C://upload//tmp//"; // 用於存放臨時檔案的目錄

 

public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
{
    try {
        DiskFileUpload fu = new DiskFileUpload();
        // 設定最大檔案尺寸,這裡是4MB
        fu.setSizeMax(4194304);
        // 設定緩衝區大小,這裡是4kb
        fu.setSizeThreshold(4096);
        // 設定臨時目錄:
        fu.setRepositoryPath(tempPath);

 

        // 得到所有的檔案:
        List fileItems = fu.parseRequest(request);
        Iterator i = fileItems.iterator();
        // 依次處理每一個檔案:
        while(i.hasNext()) {
            FileItem fi = (FileItem)i.next();
            // 獲得檔案名稱,這個檔案名稱包括路徑:
            String fileName = fi.getName();
            if(fileName!=null) {
                // 在這裡可以記錄使用者和檔案資訊
                // ...
                // 寫入檔案a.txt,你也可以從fileName中提取檔案名稱:
                fi.write(new File(uploadPath + "a.txt"));
            }
        }
        // 跳轉到上傳成功提示頁面
    }
    catch(Exception e) {
        // 可以跳轉出錯頁面
    }
}
}

 

//當servlet收到瀏覽器發出的Post請求後,在doPost()方法中實現檔案上傳。以下是範例程式碼:

 


如果要在設定檔中讀取指定的上傳檔案夾,可以在init()方法中執行:

 

public void init() throws ServletException {
    uploadPath = ....
    tempPath = ....
    // 檔案夾不存在就自動建立:
    if(!new File(uploadPath).isDirectory())
        new File(uploadPath).mkdirs();
    if(!new File(tempPath).isDirectory())
        new File(tempPath).mkdirs();
}

 

配置servlet,用記事本開啟tomcat/webapps/你的webapp/WEB-INF/web.xml,沒有的話建立一個。典型配置如下:

 

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
    <servlet>
        <servlet-name>Upload</servlet-name>
        <servlet-class>Upload</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Upload</servlet-name>
        <url-pattern>/fileupload</url-pattern>
    </servlet-mapping>
</web-app>

 

配置好servlet後,啟動tomcat,寫一個簡單的html測試:

 

<form action="fileupload" method="post" enctype="multipart/form-data" name="form1">
  <input type="file" name="file">
  <input type="submit" name="Submit" value="upload">
</form>

 

注意action="fileupload"其中fileupload是配置servlet時指定的url-pattern。  (轉載)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.