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();
            }
        }
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!