postman 调试下载接口,点击send and download 不能带出名字问题

在浏览器直接敲回车是没问题的…

response.setHeader(HttpHeaders.CONTENT_DISPOSITION, “attachment; filename=” + URLEncoder.encode(fileName, “utf-8”));

filename名字全部小写一定不能错,否则只返回response
(而且你的浏览器访问是正常的, 会坑你的哦)

20200617后记:
有些中文还是会有问题

你可能感兴趣的:(postman 调试下载接口,点击send and download 不能带出名字问题)