解决 Spring Boot Rest 服务中的文件下载问题
从 Spring Boot REST 服务下载文件可能会遇到错误。为了解决这些问题,我们检查提供的服务器端代码:
<code class="java">@RequestMapping(path="/downloadFile",method=RequestMethod.GET) public ResponseEntity<InputStreamReader> downloadDocument(...) { ... return ResponseEntity.ok()...body(i); }</code>
识别问题
问题可能在于使用InputStreamReader,这可能会导致浏览器下载失败。
解决方案选项
<code class="java">@RequestMapping(path="/download",method=RequestMethod.GET) public ResponseEntity<Resource> download(...) { ... InputStreamResource resource = new InputStreamResource(new FileInputStream(file)); return ResponseEntity.ok()...body(resource); }</code>
<code class="java">@RequestMapping(path="/download",method=RequestMethod.GET) public ResponseEntity<Resource> download(...) { ... ByteArrayResource resource = new ByteArrayResource(Files.readAllBytes(path)); return ResponseEntity.ok()...body(resource); }</code>
实现细节
通过实施这些解决方案之一,文件下载应该从以下位置成功进行: Spring Boot REST 服务。
以上是如何修复 Spring Boot REST 服务中的文件下载错误?的详细内容。更多信息请关注PHP中文网其他相关文章!