首页 > 代码库 > Spring MVC 文件下载时候 发现IE不支持
Spring MVC 文件下载时候 发现IE不支持
@RequestMapping("download") public ResponseEntity<byte[]> download(Long fileKey) throws IOException { HttpHeaders headers = new HttpHeaders(); String fileName=new String(massMessage.getFileName().getBytes("UTF-8"),"iso-8859-1"); headers.setContentDispositionFormData("attachment", fileName); headers.setContentType(MediaType.APPLICATION_OCTET_STREAM); byte[] data = http://www.mamicode.com/new byte[2];//要下载的数据流 return new ResponseEntity<byte[]>(data, headers, HttpStatus.CREATED); }
下载时提示:
下载时提示ie无法打开该站点,请求的站点不可用或找不到
类似信息
修改为下面的就OK了,主要是HttpStatus.CREATED修改为HttpStatus.OK
原因是IE 不支持201的状态码,修改为200就行了
@RequestMapping("download") public ResponseEntity<byte[]> download(Long fileKey) throws IOException { HttpHeaders headers = new HttpHeaders(); String fileName=new String(massMessage.getFileName().getBytes("UTF-8"),"iso-8859-1"); headers.setContentDispositionFormData("attachment", fileName); headers.setContentType(MediaType.APPLICATION_OCTET_STREAM); byte[] data = http://www.mamicode.com/new byte[2];//要下载的数据流 return new ResponseEntity<byte[]>(data, headers, HttpStatus.OK); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。