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

请问下如何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#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配