views:

43

answers:

1

I am getting dynamic URLs, they point to Folders on servers like this:

http://www.xyzdomain.com/images/

www.1234ooooo.com/documents/

I need to dowload all the files int the folder of a given url. I want this done apache httpclient package in java.

Thanks in advance.

+1  A: 

You may want to check out this demo on how to use HttpClient

http://www.eboga.org/java/open-source/httpclient-demo.html

ralphL
This is basic http download, I guess I have parse through the html return by webserver to get the list of files in directory and go through it.
sid