response.addHeader("Content-Disposition", "attachment; filename=" +response.encodeURL(downloadfile));
attachment表明这是一个附件,浏览器不会寻找合适的应用程序打开文件,而是显示另存为对话框,如果这个值设成inline,则无论怎样浏览器都会自动尝试用已知关联的程序打开文件。
response.addHeader("Content-Disposition", "attachment; filename=" +response.encodeURL(downloadfile));