I am a new Java programer. I have a example for sent file.(word file. Using ms-word 2003). The file is downloaded successful but it can't open. The ms-word messages are: "Word experienced an error trying to open the file. Try these suggestions......". This's my code:

        int DEFAULT_BUFFER_SIZE = 20240*1000;

        ServletOutputStream out = response.getOutputStream(); 
        response.setContentType("application/octet-stream");
        response.addHeader("Content-Disposition", "attachment; filename=test.doc");

        String pathFile = request.getSession().getServletContext().getRealPath("/upload/");

        File file = new File(pathFile, "/test.doc");

        if (!file.exists()) {
            System.out.println("File does not exits!!!");
            return;
        }

        String contentType = getServlet().getServletContext().getMimeType(file.getName());

          response.reset();
            response.setBufferSize(DEFAULT_BUFFER_SIZE);
            response.setContentType(contentType);
            response.setHeader("Content-Length", String.valueOf(file.length()));
            response.setHeader("Content-Disposition", "attachment; filename=\"" + file.getName() + "\"");

            BufferedInputStream input = null;
            BufferedOutputStream output = null;

            try {
                // Open streams.
                input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
                output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);

                // Write file contents to response.
                byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
                int length;
                while ((length = input.read(buffer)) > 0) {
                    output.write(buffer, 0, length);
                }
            } finally {
                // Gently close streams.
                close(output);
                close(input);
            }

The word file template's content: text and image(jpg). The file size: 116KB. i am looking forward to hearing from you.

Thanks...

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.