In Python, I use a class called "urllib".
I'd just like a simple function where I can download the HTML of a webpage.
views:
87answers:
1
+4
A:
You can use java.net.URL
InputStream is = new URL(url).openStream();
Matthew Flaschen
2010-02-07 06:38:50