Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
does it produce a stack trace? if so, please post. – rorrohprog Oct 10 '12 at 8:52
In what way your code is not working? Any more details? (and another note: your description is misleading - you don't download the file using your servlet, you attempt to generate the response that should be downloaded by the browser). – Germann Arlington Oct 10 '12 at 9:06
@Rorroh Proger...am not getting any exception.. – Tushar Ahirrao Oct 10 '12 at 9:27
@GermannArlington i just want to download file which i created... – Tushar Ahirrao Oct 10 '12 at 9:27
I can see what you want to do. "My code is (but its not working)" does not tell us what IS actually happening. Do you get the download option in the browser? Does it download anything? Does it display the file instead? Do you close your browser? Do you switch your computer off? Does something else happen? Any of the above can be the reason and behaviour of "code not working" – Germann Arlington Oct 10 '12 at 9:29
show 1 more comment

closed as not a real question by BalusC, Tichodroma, Kris, Abizern, Hardik Mishra Oct 19 '12 at 11:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Often it is a bit try and error ;-)

What you can do is:

  • try content type text/xml instead of application/xml
  • setContentLength is not necessary; it might be the wrong value
  • use addHeader() instead of setHeader()
  • the filename should be in double quotes, i. e. use response.addHeader("Content-disposition", "attachment;filename=\"download.xml\"");
  • check if your while loop really is copying data

(I had a look into my working code. The hints are the differences with your code, not all of them are necessary, just for the double quotes I'm sure they are necessary because in my code it didn't work without them.)

share|improve this answer
@Johanna...Still not working – Tushar Ahirrao Oct 10 '12 at 9:50

Not the answer you're looking for? Browse other questions tagged or ask your own question.