views:

87

answers:

1

In Python, I use a class called "urllib".
I'd just like a simple function where I can download the HTML of a webpage.

+4  A: 

You can use java.net.URL

InputStream is = new URL(url).openStream();
Matthew Flaschen