up vote 1 down vote favorite
share [g+] share [fb]

I have a JSP page that handles file downloads.

I set the response header like so:

response.setContentType("application/octet-stream");
response.addHeader("Content-Disposition","attachment; filename="+fileName);

When the fileName contains spaces (i.e. "Business Report.doc"), the browser's dialog window saves the file as "Business".

I tried using URLEncoder.encode(fileName, "Unicode"); (also tried UTF-8)

but I get "Business+Report.doc" as the result.

I want the final result to be "Business Report.doc"

Any ideas?

Thanks.

link|improve this question

62% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You need to quote it.

response.addHeader("Content-Disposition","attachment; filename=\"" + fileName + "\"");

Note that a JSP is essentially the wrong place to handle file downloads. You will risk that the binary file get corrupted with template text. Better use a Servlet for this. Here's a basic example.

link|improve this answer
thanks! I will also try your Servlet solution out. – hmak Sep 7 '10 at 19:15
You're welcome. – BalusC Sep 7 '10 at 19:23
feedback

Your Answer

 
or
required, but never shown

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