Try setting the following header
Code:
response.setHeader("Content-disposition","attachment; filename=\""+filename+"\"");
"filename" is the complete file name with extension.
This name will be displayed in the download box displayed by the browser.
- Rakesh