美文网首页
00003.Java S3 download

00003.Java S3 download

作者: 笑着字太黑 | 来源:发表于2023-07-17 14:29 被阅读0次
return ResponseEntity.ok().headers(headers).contentLength(file.contentLength())
            .contentType(MediaType.parseMediaType("application/octet-stream"))
            .body(new InputStreamResource(file.getInputStream()));

=========================

this.http.get(src, {
      responseType: 'blob'
    }).subscribe({
      next: (response) => successFunc(response),
      error: (error) => errorFunc(error)
    });

相关文章

网友评论

      本文标题:00003.Java S3 download

      本文链接:https://www.haomeiwen.com/subject/ngjgudtx.html