My application needs to download a zipped xml file from a 3rd party supplier. In their documentation, the supplier sayts that I can download the file using curl in a shell script as follows:
curl --location --user [{username}:{password}] -C - --digest https://{url} - o {output_file}
Is there any way I could make a similar request in my Java application? Is it as simple as making a HttpsURLConnection and running it? Will that allow me to include the parameters that are used in the above curl command? Any help/guidance would be much appreciated.
Duplicate
http://stackoverflow.com/questions/116650/curl-equivalent-in-java
