My webapp needs to return a dynamically-generated .csv file to the user. I
can create a .jsp page that returns the csv, and I add <%@ page
contentType="text/csv" %> to the top of the page to specify the mimetype.
When I click on a link that points to the page, the browser (IE) correctly
asks whether to open or save the file.
Here's the problem: the filename it suggests has a .jsp extension, not a
.csv extension. How can I change this?
SMC - 05 Feb 2006 23:53 GMT
> My webapp needs to return a dynamically-generated .csv file to the user.
> I can create a .jsp page that returns the csv, and I add <%@ page
[quoted text clipped - 4 lines]
> Here's the problem: the filename it suggests has a .jsp extension, not a
> .csv extension. How can I change this?
response.setHeader("Content-disposition","attachment;filename=\"blah.csv\"");

Signature
Sean
I've noticed that when I use rational analyses of situations that ignore
the emotional aspects, people become hostile. This is because they are
defective. --newsgroup post
Roedy Green - 06 Feb 2006 02:47 GMT
> <%@ page
>contentType="text/csv" %> t
see http://mindprod.com/jgloss/http.html
for a mini guide to the http headers.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.