attachment和inline的区别

  1. response.addHeader("Content-Disposition""attachment; filename=" + response.encodeURL(downloadfile));  
response.addHeader("Content-Disposition", "attachment; filename=" + response.encodeURL(downloadfile));


注意到第一个值项是attachment,这是真正的关键,设定了这个值,浏览器就会老老实实地显示另存为对话框,如果这个值设成inline,则无论怎样浏览器都会自动尝试用已知关联的程序打开文件。

你可能感兴趣的:(浏览器)