檔案上傳與下載

Y發表於2020-12-13

1.上傳

在Servlet2.5中,我們要實現檔案上傳功能時,一般情況下都需要藉助其他開源元件。然而在Servlet3.0中提供了對檔案上傳的直接支援,不需要藉助任何第三方上傳元件,直接使用Servlet3.0提供的API就能夠實現檔案上傳功能了。

11、設定表單的enctype=“multipart/form-data”,methos必須為post

<form action="${pageContext.request.contextPath}/UploadServlet" method="post"  enctype="multipart/form-data"  >
	上傳:<input type="file" name="uploadFile1" />  <br/><br/>
	上傳:<input type="file" name="uploadFile2" />  <br/><br/>
	上傳:<input type="file" name="uploadFile3" />  <br/><br/>
	<input type="submit"  />
</form>

2、在servlet中加上@MultipartConfig註解(檔案上傳是後來加入的技術,所以需要申明一下)
3、在servlet中使用request.getPart(“引數名”)獲取單個檔案或request.getParts()獲取上傳的檔案的集合。
4、通過part.getHeader(“content-disposition”);或者String fileName = p.getSubmittedFileName();(tomcat8)來獲取檔名和字尾。檔名為中文的時候需要加上request.setCharacterEncoding(“utf-8”);才會不亂碼。
5、通過part.write(filePath+fileName);將檔案寫到本地指定目錄中。

@MultipartConfig
@WebServlet("/UploadServlet")
public class UploadServlet extends HttpServlet {
	
	private String filePath = "D:\\proFile\\" ;
	
	@Override
	protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		req.setCharacterEncoding("utf-8");
		
		Collection<Part> parts = req.getParts();
		for (Part p : parts) {
			if(p!=null){
				String fileName = p.getSubmittedFileName();
				p.write(filePath+fileName);
			}
		}
	}

}

2、下載

//設定請求編碼為utf-8
		req.setCharacterEncoding("utf-8");
		//獲取需要下載的檔名
		String fileName = req.getParameter("fileName");
		//檢視下載檔案是否存在
		File file = new File(path + fileName);
		if (!file.exists()) {
			System.out.println("檔案不存在");
			return;
		}
		
		
		//告訴http協議,這是一個檔案流,請下載它
		res.setContentType("application/octet-stream");
		
		//告訴http協議,檔名是啥
		res.addHeader("Content-Disposition","attachment;filename=" + new String(fileName.getBytes("utf-8"), "iso-8859-1"));
		//告訴http協議,檔案是多大
		res.addHeader("Content-Length", file.length() + "");
		
		//開啟一個輸入流,指向目標檔案
		FileInputStream in = new FileInputStream(file);
		//in.available() 獲取輸入流目標的大小
		byte[] data = new byte[in.available()];
		//讀取data.length長度的位元組資料,讀到data這個Byte陣列中存放著
		in.read(data);
		
		//開啟位元組流,因為我們要通過二進位制流下載檔案
		ServletOutputStream outputStream = res.getOutputStream();
		outputStream.write(data);
		outputStream.flush(); //清空緩衝區
        //關閉流
		outputStream.close();
		in.close();

3、優化

public class FileUtil {
	
	/**
	 * 檔案上傳功能
	 * @param request
	 * @param path
	 * @return 多檔案上傳的檔名
	 * @throws Exception
	 */
	public static List<String> uploadFile(HttpServletRequest request,String path) throws Exception{
		Collection<Part> parts = request.getParts();
		List<String> fileNameList = new ArrayList<String>();
		for (Part p : parts) {
			if(p!=null){
				String fileName = p.getSubmittedFileName();
				p.write(path+fileName);
				fileNameList.add(fileName);
			}
		}
		return fileNameList ;
	}
	
	
	/**
	 * 檔案下載
	 * @param response
	 * @param pathName
	 * @throws Exception
	 */
	public static void downloadFile(HttpServletResponse response,String pathName) throws Exception{
		File file = new File(pathName);
		if (!file.exists()) {
			System.out.println("檔案不存在");
			response.getWriter().write("檔案不存在");
			return ;
		}
		
		System.out.println();
		
		response.setContentType("application/octet-stream");
		response.addHeader("Content-Disposition","attachment;filename=" + new String(file.getName().getBytes("utf-8"), "iso-8859-1"));
		response.addHeader("Content-Length", file.length() + "");
		FileInputStream in = new FileInputStream(file);
		byte[] data = new byte[1024*100];
		int i= 0 ;
		ServletOutputStream outputStream = response.getOutputStream();
		while((i=in.read(data)) != -1){
			outputStream.write(data,0,i);
		}
		
		outputStream.flush();  
		outputStream.close();
		in.close();
	}

}

相關文章