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();