2020JavaWeb實現檔案下載

youlingdada發表於2020-09-05

Servlet實現檔案下載:

package com.demo.test;

import org.apache.commons.io.IOUtils;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URLEncoder;

public class DownFile extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// http協議預設不支援中文,需要設定編碼才可以識別中文;URLEncoder.encode("文字","UTF-8") IE和谷歌瀏覽器解決方案;
// url編碼是把中文轉化為%XX%XX的形式,十六進位制
// 五大主要步驟
// 1、獲取要下載的檔名(這裡直接寫死檔名);
String downloadFilename = "1599146380315.jpeg";
// 2、獲取要下載的檔案內容(通過ServletContext物件可以讀取);
ServletContext servletContext = getServletContext();
// 獲取檔案所在檔案路徑
String mimeType = servletContext.getMimeType("/resource/" +downloadFilename );
        System.out.println("下載的檔案型別:"+mimeType);
// 4、在回傳前,通過響應頭告訴客戶端返回的資料型別
resp.setContentType(mimeType);
// 5、還要告訴客戶端收到的資料用於下載使用(還是使用響應頭)
// Content-Disposition響應頭,表示收到的資料怎麼處理
// attachment表示附件,表示下載使用
// filename表示指定下載的檔名
resp.setHeader("Content-Disposition","attachment;filename="+downloadFilename);
InputStream resourceAsStream = servletContext.getResourceAsStream("/resource/" +URLEncoder.encode(downloadFilename,"UTF-8"));
//        獲取響應的輸出流
OutputStream outputStream = resp.getOutputStream();
// 3、把下載的檔案回傳到客戶端
// 讀取輸入流中全部的資料,複製給輸出流,輸出給客戶端
IOUtils.copy(resourceAsStream, outputStream);
}
}

相關文章