gpt4 book ai didi

java - 使用 Spring 的 POST 请求下载文件?

转载 作者:行者123 更新时间:2023-12-02 06:18:56 35 4
gpt4 key购买 nike

为了使用 Spring 下载文件,我使用 GET 方法。

@RequestMapping(value = "/exportar/{tipo}", method = RequestMethod.GET)
@ResponseBody
public void exportar(HttpServletResponse response,@PathVariable TipoEnum tipo) throws IOException{

File file = service.exportar(tipo);

response.setHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", file.getName() + ".xls"));
response.setContentType("application/ms-excel; charset=UTF-8");
InputStream inputStream = new BufferedInputStream(new FileInputStream(file));
FileCopyUtils.copy(inputStream, response.getOutputStream());
}

如何使用 POST 实现此目的?这可能吗?

@RequestMapping(value = "/exportar", method = RequestMethod.POST)

最佳答案

我刚刚在 Insomnia REST 客户端中重现了此错误。
添加标题后:

'Content-type': 'application/json'

问题似乎已经解决了。

关于java - 使用 Spring 的 POST 请求下载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43592077/

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