I am using Java servlet POST method. I am sending some data to server and by processing that data i am creating one file on server and i want to return that file and browser should ask download box.
My code is (but its not working) :
@Override
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
try {
String path=getServletContext().getRealPath("/download.xml");;
Writer output = null;
File file=new File(path);
file.createNewFile();
FileWriter fileWriter=new FileWriter(file);
output = new BufferedWriter(new FileWriter(file));
output.write(xmlString);
output.close();
response.setContentType("application/xml");
response.setContentLength((int) file.length());
response.setHeader("Content-Disposition",
"attachment;filename=download.xml");
ServletContext ctx = getServletContext();
InputStream is = ctx.getResourceAsStream("/download.xml");
int read1=0;
byte[] bytes = new byte[BYTES_DOWNLOAD];
ServletOutputStream os = response.getOutputStream();
while((read1 = is.read(bytes))!= -1){
os.write(bytes, 0, read1);
}
is.close();
os.flush();
os.close();
} catch (Exception e) {
e.printStackTrace();
}
}
Please help me.