how to pass string to a url and get the image from the webserver to the java SE application
how to pass string to a url in java. i want to download an image from a web server. before downloading a image i want to pass some values to that image then after that i want to download the image. c开发者_JS百科an someone help me. in Java SE application
Use apache-commons-httpclient for this. Works like a browser, you pass an URI and get an InputStream. Even has cookie and form emulation support.
精彩评论