Hi,
does anyone know of a Java library to fetch webpages through https?
Hi,
does anyone know of a Java library to fetch webpages through https?
There is a great example of how to fetch a websites contents right in Sun's Java tutorial.
http://java.sun.com/docs/books/tutorial/networking/urls/readingURL.html
However if you want to fetch it's entire contents including scripts, images, and other goodies, you will have to parse out the links yourself and download them as well.