vote up 1 vote down star

I am generating a csv (comma separated value) file with Java Server Pages (JSP). The URL shows "my_generated_csv.jsp".

What I want to do is simple: The user clicks "Generate" which downloads the generated CSV file. I'd like to generate it with the JSP. Do I need to rethink my approach?

Edit:

The following code works to make the file downloadable, but the extension remains the same. Does anyone know how to change it?

<% response.setContentType("text/csv"); %>
flag

@fmsf: I'm getting tired of this: Always burn in hell. – belgariontheking Mar 25 at 11:35

2 Answers

vote up 2 vote down

Have JSP save the file, and then give the user a link to the file. Either that or give the page the MIME type of a csv file (text/csv).

I believe you would use

<% response.setContentType("text/csv"); %>

To set the mime type.

link|flag
It works to make the file downloadable, but the extension remains the same – fmsf Mar 14 at 17:45
vote up 1 vote down check

Found the answer:

response.setContentType("application/csv");
response.setHeader("Content-Disposition", "inline;filename=myfile.csv");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.