Using JAVA, I\'m trying to force the browser to download files.
Here is the code I currently use:
response.reset
I tried by chance to add more headers, and in fact, the Content-Length header resolved the problem...
Content-Length
So finally, I just add this line to make it work:
response.setContentLength((int) file.length());