gpt4 book ai didi

Spring boot服务下载文件

转载 作者:行者123 更新时间:2023-12-03 03:58:03 24 4
gpt4 key购买 nike

我想使用 Spring Boot 创建一个 Restful 服务,它将下载位于服务器 http:8080/someurl/{fileid} 的 jar。我该怎么做?

最佳答案

    @RequestMapping(value = "/files/{fileID}", method = RequestMethod.GET)
public void getFile(
@PathVariable("fileID") String fileName,
HttpServletResponse response) throws IOException {
String src= DestLocation.concat("\\"+fileName+".jar");
InputStream is = new FileInputStream(src);
IOUtils.copy(is, response.getOutputStream());
response.flushBuffer();
}

关于Spring boot服务下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28407215/

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