Spring设置文件名外部下载URL

时间:2016-02-15 08:09:33

标签: spring redirect

如何在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);

0 个答案:

没有答案