文件下载

version1
admin 2 years ago
parent db2d781e21
commit 51fa5d8624

@ -90,7 +90,7 @@ public class IdcController {
public void downloadFile(HttpServletResponse response,@RequestParam String fileName) throws UnsupportedEncodingException {
if (fileName != null) {
response.setHeader("Content-disposition", "attachment; filename=" + URLEncoder.encode(fileName, "UTF-8"));
response.setContentType("application/octet-stream");
response.setContentType("application/force-download");
idcService.downloadFile(fileName, response);
}

Loading…
Cancel
Save