vote up 1 vote down star

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

flag

80% accept rate

closed as exact duplicate by Daok Oct 20 '08 at 20:16

2 Answers

vote up 0 vote down

here is some related info:

http://stackoverflow.com/questions/116650/curl-equivalent-in-java

link|flag
vote up 0 vote down

Use the libcurl Java bindings.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.