使用Spring的POST请求下载文件?
来源:爱站网时间:2021-09-17编辑:网友分享
为了使用Spring下载文件,我使用的是GET方法。 @RequestMapping(value =“ / exportar / {tipo}”,方法= RequestMethod.GET)@ResponseBody public void exportar(HttpServletResponse response,@ ...
问题描述
为了使用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'
问题似乎已解决。