I'm writing a servlet which should send a text file to the client, forcing the file to be downloaded rather than displayed on the browser. The relevant code is (from a try-catch block with more code):

response.setContentType("application/force-download");
response.setHeader("Content-Transfer-Encoding", "binary");
response.setHeader("Content-Disposition","attachment;filename=\"" + fName + ".fmt\"");

out = response.getWriter(); //Previoulsy defined as PrintWriter

int c;
char[] outputByte = new char[4096];
//content is a Reader from a CharacterStream from a text field on a database.
while ((c = content.read(outputByte)) != -1) {
    out.write(outputByte, 0, c);
}

out.flush(); //Writer closed on finally block.

I came to this based on several post from stackoverflow. I don't really know why it's not working. Problem is that I get a file with the specified name but with zero bytes on it.

If I change content type to "text/plain;charset=utf-8" file is perfectly displayed on the browser but never forced to download. I already tried "application/octet-stream" as it appears in some posts but same result as with "application/force-download".

My environment is NetBeans 7.1 and Tomcat 7.0.22 (from NB install) with JDK 1.7.0_02-b13 64-Bit on Ubuntu 11.10.

Any help will be much appreciated.

link|improve this question
Take a look at the accepted answer for this question: java servlet - how to force browser to download file? It should help you out. – Mr. Will Jan 27 at 17:51
Thank you for pointing me there. As suggested in that answer, I checked the headers received by the client (Chrome in my case) and noticed that the response content length was 0. Investigating deeper I found a filter on the project was taking and empty OutputStream (from a wrapped response object) and rewriting it to the real output which, obviously, produced a zero length content response. – Vlad Jan 27 at 19:46
That code block was absolutely working fine for me in Chrome. – Ravindra Gullapalli Jan 28 at 0:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.