This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes JSP and the fly likes File download Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSP
Reply Bookmark "File download" Watch "File download" New topic
Author

File download

kausalya mohan
Greenhorn

Joined: Aug 02, 2007
Posts: 1
Hi all,

I tried the following code to download a file.
<%
String fileName = "abc.xml";
response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
response.setContentType("text/xml");
%>

But when I execute this I get the file dialog,but when I click on the open button I get "Action cancelled".But I want to download the file.Can anybody help?

Thanks.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: File download
 
Similar Threads
download problem
word file not getting downloaded on Netscape6
Japanese filename coming s junk
word file not getting downloaded on Netscape6
How to handle randomly generated files?