You need to do two steps to download a file from java restful web services.
- Annotate your service method with @Produces annotation. This annotation should have the file MIME type as a value. For example, if you are downloading pdf file then MIME type should be "application/pdf", in case if you are downloading png image file, then MIME type should be "image/png".
- In the Response header, set “Content-Disposition” details, which helps to prompt download box on browser.
Here is the service class to download file:
0 comments:
Post a Comment