Download a file from the browser using HttpServlet

Nui

New Member
I am trying to download a file from the browser which is in my \[code\].war\[/code\] file. I am using the following code:\[code\]DataInputStream in = new DataInputStream(new FileInputStream(templatePathFilename)); ServletOutputStream myOut = response.getOutputStream(); response.setContentType("application/ms-word"); response.setHeader("Content-Disposition", "attachment;filename="+outgoingFileName); byte[] bbuf = new byte[4096]; int length=0; while ((in != null) && ((length = in.read(bbuf)) != -1)) { myOut.write(bbuf,0,length); } myOut.flush();myOut.close();in.close();\[/code\]But i am unable to download the file. Please help!
 
Top