Link to home
Start Free TrialLog in
Avatar of Omer-Pitou
Omer-Pitou

asked on

RestTemplate: Download a Zip file

Dear sirs,
I would like to have a sample code demonstrating how to download a ZIP file using Spring RestTemplate.
I can do it using Jersey, I have hard time doing with Spring RestTemplate.
Please, assist
ASKER CERTIFIED SOLUTION
Avatar of girionis
girionis
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Omer-Pitou
Omer-Pitou

ASKER

Thanks a lot. This is what I was missing
headers.setAccept(Arrays.asList(MediaType.APPLICATION_OCTET_STREAM, MediaType.ALL)
I used headers.setContentType(MediaType.APPLICATION_OCTET_STREAM), instead, and wonder why it didn't  work.
Again thanks a lot.