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.