qq_16308429 2020-02-27 09:25 采纳率: 0%
浏览 546

请问下如何spring boot 如何提供下载MP3和wav文件接口,同时内容正确即下载后能播放?

请问下如何spring boot 如何提供下载MP3和wav文件接口,同时内容正确即下载后能播放?

  • 写回答

1条回答 默认 最新

  • 奋斗的小杨 2023-09-13 09:32
    关注

    参考下面

    import org.springframework.core.io.FileSystemResource;
    import org.springframework.core.io.Resource;
    import org.springframework.http.HttpHeaders;
    import org.springframework.http.MediaType;
    import org.springframework.http.ResponseEntity;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    @RequestMapping("/api")
    public class FileController {
    
        @GetMapping("/download/{fileName:.+}")
        public ResponseEntity<Resource> downloadFile(@PathVariable String fileName) {
            // 设置文件路径
            String filePath = "/path/to/files/" + fileName;
    
            // 创建文件资源
            Resource resource = new FileSystemResource(filePath);
    
            // 检查文件是否存在
            if (resource.exists()) {
                // 设置响应头部
                HttpHeaders headers = new HttpHeaders();
                headers.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=" + fileName);
                headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
    
                // 返回响应实体
                return ResponseEntity.ok()
                        .headers(headers)
                        .body(resource);
            } else {
                // 文件不存在时返回404错误
                return ResponseEntity.notFound().build();
            }
        }
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3