'Download zip file as response after hitting Post Call in Rest assured

I am trying this download link in swagger from post call in java using RestAssured. But after hitting the endpoint, the response is some unwanted characters displayed on console. This is a zip file we are talking about. How can i download the file and save it in my local?



Solution 1:[1]

Save file from response:

Path pathToFile = new File("path/to/your/file").toPath();
Files.copy(response.asInputStream(), pathToFile);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 lucas-nguyen-17