pdf下载还是打开的设置问题

下载PDF 一个打开 一个直接下载

response.setHeader("Content-Type", "application/pdf");

response.setHeader("Content-Disposition", "attachment;filename=" + "1.pdf"); 

response.setHeader("Content-Disposition", "inline;filename=" +  "2.pdf");

// inline打开  attachment下载

原文地址:https://www.cnblogs.com/boboxing/p/14000854.html