In Python, I use a class called "urllib".
I'd just like a simple function where I can downl开发者_运维百科oad the HTML of a webpage.You can use java.net.URL
InputStream is = new URL(url).openStream();
In Python, I use a class called "urllib".
I'd just like a simple function where I can downl开发者_运维百科oad the HTML of a webpage.You can use java.net.URL
InputStream is = new URL(url).openStream();
精彩评论