Force "Save file" dialog on the JSP page

来源:互联网 发布:mac see sheer西柚色 编辑:程序博客网 时间:2024/05/22 04:50

If you want to force pop up "Save File" dialog to ask user save file from server.

We need to set the several parameter to response.

the first is content type.

 

response.setContentType("application/pdf"); // the type is the file type you want to user to save.

Another is content disposition.

This is very important when you want to force the save dialog. not matter if the browser has assicate some file type to open in the browser.

 

response.setHeader("Content-Disposition", "attachment;filename=/"somename/"");

Notice: attachment is very important here since it's force prompt the save file dialog.