I need to download images from a website, and I have the login name and password, but if i just use URL to download the image, it will throw a exception: there is no value i
In simple circumstances you can use a URLConnection with the URL and stream the contents down. More generally I'd strongly advise you use Apache HttpClient since you'll need to do authentication and possibly receive and send cookies to the server. Read the user guide regarding Authentication and Methods, particularly Get.