文件下载

version1
admin 2 years ago
parent da6764ff72
commit db2d781e21

@ -90,8 +90,10 @@ 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");
idcService.downloadFile(fileName, response);
}
idcService.downloadFile(fileName, response);
}

Loading…
Cancel
Save