解释 public ResponseEntity<byte[]> download(@RequestParam String fileName) { try { File path = new File(ResourceUtils.getURL("classpath:static").getPath()); if(!path.exists()) { path = new File(""); } File upload = new File(path.getAbsolutePath(),"/upload/"); if(!upload.exists()) { upload.mkdirs(); } File file = new File(upload.getAbsolutePath()+"/"+fileName); if(file.exists()){ /*if(!fileService.canRead(file, SessionManager.getSessionUser())){ getResponse().sendError(403); }*/ HttpHeaders headers = new HttpHeaders(); headers.setContentType(MediaType.APPLICATION_OCTET_STREAM); headers.setContentDispositionFormData("attachment", fileName); return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED); } } catch (IOException e) { e.printStackTrace(); } return new ResponseEntity<byte[]>(HttpStatus.INTERNAL_SERVER_ERROR); }
时间: 2024-04-27 14:22:42 浏览: 181
java、javascript实现附件下载示例
这是一个 Spring Boot 的下载文件接口,接收一个文件名参数,返回一个 ResponseEntity<byte[]> 对象。接口的具体实现步骤如下:
1. 通过 ResourceUtils 工具类获取 classpath 下的 static 目录路径。
2. 判断 upload 目录是否存在,如果不存在则创建该目录。
3. 构建要下载的文件的绝对路径。
4. 判断文件是否存在,如果存在则读取文件内容并将其转换成字节数组。
5. 构建 HttpHeaders 对象,设置响应类型为 APPLICATION_OCTET_STREAM,设置响应头 Content-Disposition 的属性为 attachment,文件名为 fileName。
6. 返回一个 ResponseEntity<byte[]> 对象,其中包含了文件的字节数组、响应头以及状态码(HttpStatus.CREATED)。
7. 如果文件不存在,则返回 HttpStatus.INTERNAL_SERVER_ERROR 状态码。
阅读全文