Blossom and downloading file from server

139 Views Asked by At

I'm trying to download file generated on server. One of them are placed on the disc while some others are downloaded from external webservice as base64 decoded byte[].

But when I do FileCopyUtils.copy(new FileInputStream(dFile), response.getOutputStream());

the downloaded file is corrupted because it contains html code of current page. Is there any 'special' way of downloading file with Blossom ?

Regards

2

There are 2 best solutions below

0
On BEST ANSWER

Not really sure what you are trying to do. So you saying that you take file dFile and just dump it to output stream you obtained from HttpServletResponse?

There is multitude of reasons why it doesn't work. Your component is probably inside of some page, so chances are high that there is already something written the output stream. Also you have not mentioned anywhere whether or not did you set the response headers correctly to indicate that you are sending file back. IMO the easiest way to go around it is to create a custom servlet, place it in the chain along other servlets and send file from there rather than sending it from the component. Have a look at for example DamDownloadServlet, specially its handleResourceRequest () method.

HTH, Jan

1
On

Thank you for your response. This could be hard to do because I need to fill the page with some data as well as download the file. So I need current component to be called. You are right - this is the blossom component and it's placed inside other page. So there is something at the output stream.

And this is my code. As you can see, I'm setting the right ContentType.

ServletContext context = RequestContextUtils.getWebApplicationContext(request).getServletContext();
            String mimetype = context.getMimeType(dFile.getAbsolutePath());
            response.setContentType(mimetype != null ? mimetype : "application/pdf");
            response.setContentLength(new Long(dFile.length()).intValue());
            response.setHeader("Content-Disposition", "attachment; filename=\""+dFile.getName()+"\"");
            try {
                FileCopyUtils.copy(new FileInputStream(dFile), response.getOutputStream());
            } catch (FileNotFoundException e) {
                logger.error(e);
            } catch (IOException e) {
                logger.error(e);
            }

Regards Jan