天天看點

ftp 下載下傳檔案到 用戶端輸出流 檔案名卻是download

ftp 下載下傳檔案到 用戶端輸出流 檔案名卻是download

為下載下傳的檔案進行命名:

response 設定如下:

response.setContentType("application/x-msdownload");

            response.setCharacterEncoding("UTF-8");

            response.setHeader("Content-Disposition", "attachment; filename="

                            + filename.substring(filename.lastIndexOf("/")+1,filename.length()));