【Linux】【FastDFS】FastDFS上传返回的url直接下载和下载文件的文件名问题

FastDFS安装及其他问题参考:https://www.cnblogs.com/jxd283465/p/11556263.html

直接调用FastDFS返回的url,浏览器访问后默认打开方式。
/usr/bin/fdfs_test /etc/fdfs/client.conf upload test.jpg

【Linux】【FastDFS】FastDFS上传返回的url直接下载和下载文件的文件名问题

文件下载方案

 1.调用download接口,定义下载的文件名

public void download(String fileUrl, HttpServletResponse response) throws Exception{

byte[] data = fdfsClient.download(fileUrl);

response.setCharacterEncoding("UTF-8");
response.setHeader("Content-disposition", "attachment;filename=" + URLEncoder.encode("test.7z", "UTF-8"));

// 写出
ServletOutputStream outputStream = response.getOutputStream();
IOUtils.write(data, outputStream);
}

2.nginx反向代理增加请求头Content-disposition及attachment

server {
  listen 8082;
  server_name 192.168.8.200;
  location /group1/M00 {
    add_header Content-Disposition "attachment;filename=$arg_attname"; 
    ngx_fastdfs_module;
  }
  }

在upload接口中进行url拼接 fdfsClient.uploadFile(file) + "?attname=" + file.getOriginalFilename()


转:Nginx-Fastdfs根据入参判断为直接打开文件还是强制下载文件

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/qq_40809549/article/details/81984798
场景需求:Fastdfs存储的文件,浏览器访问时默认为打开模式;部分文件要求强制为下载模式

解决办法:调整nginx配置,根据入参判断是否添加attachment,强制为下载模式

PS:调试时注意浏览器缓存干扰,建议关闭缓存:F12-Network 勾选Disable cache

 

Nginx根据入参判断文件是显示还是下载

location ~/group[0-9] {

    if ( $query_string ~* ^(.*)parameter=config\b|1\b(.*)$ ){

        add_header Content-Disposition "attachment;";

        }

    ngx_fastdfs_module;

}

原url访问时,浏览器直接打开文件;

后面跟参数“?parameter=1”时,加attachment,强制为下载模式

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwdgwf.html