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
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 fromHttpServletResponse
?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