程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 下載網站圖片代碼並且解析亂碼

下載網站圖片代碼並且解析亂碼

編輯:關於JSP
復制代碼 代碼如下:
// 獲取網站對象
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();
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved