Hi I am making a Java-program that should read the html-code from several different websites. I am currently using this tutorial to read from one website: http://hc.apache.org/httpclient-3.x/tutorial.html My question is: do I really have to release and restart the connection after every website I read? As there are so many websites it would be good if I could instead redefine the HttpMethod instead of creating a new one for each site. Is this possible? Or is it possible to in some way connect to all the websites at the same time? Thanks in advance
