I am having one jsp in which i have provided one link for downloading any document.
Whenever user clicks the link,it directly open the document.
I want to show one dialog box(which generally appears on many websites) which will ask user to save, cancel and view the document.
can anybody help me out..??
i am using following code in my controller class.
InputStream is = new FileInputStream(new File(**File Path**);
IOUtils.copy(is, response.getOutputStream());
response.flushBuffer();
I got the solution .
I added response content type and it’s working.
response.setHeader(“Content-Disposition”, “attachment;filename=abc.jpg”);
Thanks to all who tried to help me out from this issue.