gpt4 book ai didi

java - Spring Boot 可以设置从 Controller 端点下载的文件的名称吗?

转载 作者:行者123 更新时间:2023-12-05 03:33:50 25 4
gpt4 key购买 nike

这里是 Java 11 和 Spring Boot 2.5.x。我知道我可以设置一个 Controller 来返回文件的内容,如下所示:

@GetMapping(
value = "/get-image-with-media-type",
produces = MediaType.IMAGE_JPEG_VALUE
)
public @ResponseBody byte[] getImageWithMediaType() throws IOException {
InputStream in = getClass()
.getResourceAsStream("/path/to/some/image.jpg");
return IOUtils.toByteArray(in);
}

但是如果我想控制发回文件的名称怎么办?例如,在服务器端,文件名可能存储为“image.jpg”,但假设我希望将其返回为“<userId>-<YYYY-mm-DD>-image.jpg”,其中 <userId>是发出请求的经过身份验证的用户的用户 ID,其中 <YYYY-mm-DD>是提出请求的日期吗?

例如,如果用户 123 在 2021 年 10 月 12 日发出请求,则文件将下载为“123-2021-12-10-image.jpg”,如果用户 234 发出2022 年 1 月 17 日的请求将下载为“234-2022-01-17-image.jpg”。这是否可以在 Spring/Java/服务器端进行控制,还是由 HTTP 客户端(浏览器、PostMan 等)决定文件名?

最佳答案

请试试这个,在线评论:

package com.example;

import java.io.IOException;
import java.security.Principal;
import java.util.Date;
import org.apache.commons.io.IOUtils;
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;


@Controller
public class SomeController {

@GetMapping(
value = "/get-image-with-media-type",
produces = MediaType.IMAGE_JPEG_VALUE
) // we can inject user like this (can be null, when not secured):
public ResponseEntity<byte[]> getImageWithMediaType(Principal user) throws IOException {
// XXXResource is the "spring way", FileSystem- alternatively: ClassPath-, ServletContext-, ...
FileSystemResource fsr = new FileSystemResource("/path/to/some/image.jpg");
HttpHeaders responseHeaders = new HttpHeaders();
responseHeaders.set(HttpHeaders.CONTENT_DISPOSITION,
// for direct downlad "inline", for "save as" dialog "attachment" (browser dependent)
// filename placeholders: %1$s: user id string, 2$tY: year 4 digits, 2$tm: month 2 digits, %2$td day of month 2 digits
String.format("inline; filename=\"%1$s-%2$tY-%2$tm-%2$td-image.jpg\"",
// user name, current (server) date:
user == null ? "anonymous" : user.getName(), new Date()));

// and fire:
return new ResponseEntity<>(
IOUtils.toByteArray(fsr.getInputStream()),
responseHeaders,
HttpStatus.OK
);
}
}

相关引用:

使用 ContentDisposition 它可以看起来(只是)像:

responseHeaders.setContentDisposition(
ContentDisposition
.inline()// or .attachment()
.filename(// format file name:
String.format(
"%1$s-%2$tY-%2$tm-%2$td-image.jpg",
user == null ? "anonymous" : user.getName(),
new Date()
)
)
.build()
);

TYVM:How to set 'Content-Disposition' and 'Filename' when using FileSystemResource to force a file download file?

关于java - Spring Boot 可以设置从 Controller 端点下载的文件的名称吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70280107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com