|
|
|
@ -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);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|