復制代碼 代碼如下:
// 獲取網站對象
ServletContext context = this.getServletContext();
// 獲取網站資源
String path = context.getRealPath("/imgs/人.jpg");
File file = new File(path);
System.out.println(file);
// 設置響應頭通知浏覽器數據的處理方式
response.setHeader("content-disposition",
"attachment;filename="+
URLEncoder.encode(file.getName(),"utf-8")); // 處理文件名亂碼 指定圖片格式為下載
// 指定字節輸入流對象
FileInputStream in = new FileInputStream(file);
// 獲取字節輸出流對象
ServletOutputStream out = response.getOutputStream();
// 邊讀邊寫
byte [] b = new byte[1024];
int len = 0;
while((len = in.read(b)) != -1){
out.write(b, 0, len);
}
// 釋放資源
in.close();