如何在spring controller中设置外部URL的file name
文件?
我想重定向文件下载网址
http//:www.test.com/filedownload/test.txt
此网址重定向到网址
http://www.test2.com/filedownload/UniqueFileName.txt
response.sendRedirect("http://www.test2.com/filedownload/UniqueFileName.txt")
但在这种情况下,文件下载名称为UniqueFileName.txt
想要为外部网址响应设置响应标头,如下所示
response.setContentType("application/x-msdownload");
response.setHeader("Content-disposition", "attachment; filename=" + originalFileName);