Servlet文件下载的时候自动打开文件解决办法
代码如下 | 复制代码 |
response.addHeader("Content-Disposition", "attachment; filename=" + response.encodeURL(downloadfile)); |
补充:Jsp教程,Jsp/Servlet开发工具
代码如下 | 复制代码 |
response.addHeader("Content-Disposition", "attachment; filename=" + response.encodeURL(downloadfile)); |
补充:Jsp教程,Jsp/Servlet开发工具