参考 : https://www.imooc.com/qadetail/253900
转码
response.setContentType("application/force-download");// 设置强制下载不打开
response.addHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(fileName, "utf-8"));// 设置文件名
END。
参考 : https://www.imooc.com/qadetail/253900
转码
response.setContentType("application/force-download");// 设置强制下载不打开
response.addHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(fileName, "utf-8"));// 设置文件名
END。